Skip to content

Commit

Permalink
greater timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
temi committed Nov 25, 2024
1 parent c9d4111 commit e37f6bc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('Add BioActivity Spec', function () {
await addBioActivityPage.takeScreenShot("shouldAddAnActivityBeforeSave");
// Save the activity
await addBioActivityPage.saveActivity();
await browser.sleep(30000);
await browser.pause(30000);
await addBioActivityPage.hasBeenReloaded();
// Verify that the ViewBioActivityPage is loaded
expect(await viewBioActivityPage.at()).toBeTrue();
Expand Down
10 changes: 6 additions & 4 deletions wdio.shared.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,12 @@ const config = {
// - @wdio/sumologic-reporter
// - @wdio/cli, @wdio/config, @wdio/sync, @wdio/utils
// Level of logging verbosity: trace | debug | info | warn | error | silent
// logLevels: {
// webdriver: 'info',
// '@wdio/applitools-service': 'info'
// },
logLevels: {
webdriver: 'trace',
'@wdio/devtools-service': 'trace',
'@wdio/jasmine-framework': 'trace',
'@wdio/local-runner': 'trace'
},
//
// If you only want to run your tests until a specific amount of tests have failed use
// bail (default is 0 - don't bail, run all tests).
Expand Down

0 comments on commit e37f6bc

Please sign in to comment.