Skip to content

Commit

Permalink
squashme - test
Browse files Browse the repository at this point in the history
  • Loading branch information
naugtur committed Jan 17, 2024
1 parent 9754d63 commit 9a35eb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lockdown-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# node ./packages/ses/smoke-test/index.js "$(which chrome)"

chrome-canary:
runs-on: macos-11
runs-on: windows-stable
## chrome-canary is not supported on linux o_O
## but canary on mac won't connect

Expand All @@ -59,7 +59,7 @@ jobs:
uses: browser-actions/setup-chrome@latest
## location is OS dependent
with:
chrome-version: 'beta'
chrome-version: 'canary'

- name: build ses
run: |
Expand Down
3 changes: 2 additions & 1 deletion packages/ses/smoke-test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ async function runTests() {
const pathToIndex = new URL('./fixture/index.html', import.meta.url).href;
console.log(`opening ${pathToIndex}`)

await page.goto(pathToIndex, { waitUntil: 'load' });
await page.goto(pathToIndex);
// await page.goto(pathToIndex, { waitUntil: 'load' });

assert.equal(
await page.evaluate(`typeof lockdown;`),
Expand Down

0 comments on commit 9a35eb3

Please sign in to comment.