Skip to content

Commit

Permalink
added console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
anandbagmar committed Aug 3, 2023
1 parent 0d2a5be commit 9ce19ff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/app.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ test.beforeAll(async () => {
Config.addDeviceEmulation(DeviceName.iPhone_11, ScreenOrientation.PORTRAIT);
Config.addDeviceEmulation(DeviceName.Nexus_10, ScreenOrientation.LANDSCAPE);
}
console.log('beforeAll done');
});

test.beforeEach(async ({ page }) => {
Expand All @@ -72,6 +73,7 @@ test.beforeEach(async ({ page }) => {
// Attach the eyes to the browser.
eyes.setConfiguration(Config);
await eyes.open(page, 'ToDo', test.info().title); // Pass the test name as a string
console.log('beforeEach done');
});

// Existing tests
Expand Down

0 comments on commit 9ce19ff

Please sign in to comment.