Skip to content

Commit 6509731

Browse files
sourav-kundufrancisf
authored andcommitted
minor fixes
1 parent 31d7dc6 commit 6509731

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

codeceptjs-example/jsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"compilerOptions": {
33
"allowJs": true
44
}
5-
}
5+
}

google_search.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ const clientPlaywrightVersion = cp.execSync('npx playwright --version').toString
3535
await page.evaluate(_ => {}, `browserstack_executor: ${JSON.stringify({action: 'setSessionStatus',arguments: {status: 'failed',reason: 'Title did not match'}})}`);
3636
}
3737
await browser.close();
38-
})();
38+
})();

local_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ const clientPlaywrightVersion = cp.execSync('npx playwright --version').toString
3232
await page.evaluate(_ => {}, `browserstack_executor: ${JSON.stringify({action: 'setSessionStatus',arguments: {status: 'failed',reason: 'Page title did not match'}})}`);
3333
}
3434
await browser.close();
35-
})();
35+
})();

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"devDependencies": {
33
"browserstack-local": "^1.4.8",
4-
"playwright": "^1.10.0"
4+
"playwright": "^1.11.1"
55
},
66
"dependencies": {
77
"chai": "^4.3.4"

parallel_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ const capabilities = [
7474
// The following code loops through the capabilities array defined above and runs your code against each environment that you have specified
7575
capabilities.forEach(async (cap) => {
7676
await main(cap);
77-
});
77+
});

playwright-jest/google.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ describe("Google", () => {
1212
expect(await page.title()).toBe('BrowserStack - Google Search');
1313
await page.evaluate(_ => {}, `browserstack_executor: ${JSON.stringify({action: 'setSessionStatus',arguments: {status: 'passed',reason: 'Test assertion passed'}})}`);
1414
})
15-
})
15+
})

0 commit comments

Comments
 (0)