Skip to content

Commit

Permalink
chore(ses): avoid using env variables (squashme)
Browse files Browse the repository at this point in the history
  • Loading branch information
naugtur committed Jan 17, 2024
1 parent e8adc70 commit ab19059
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lockdown-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
- name: Run tests
run: |
CHROME_BIN=$(which google-chrome-unstable) node ./packages/ses/smoke-test/index.js
node ./packages/ses/smoke-test/index.js "$(which google-chrome-unstable)"
3 changes: 2 additions & 1 deletion packages/ses/smoke-test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
import puppeteer from 'puppeteer-core';
import assert from 'assert';

const chromePath = process.env.CHROME_BIN;
const chromePath = process.argv[2];

let browser;

async function runTests() {
Expand Down

0 comments on commit ab19059

Please sign in to comment.