Skip to content

Commit aab83b9

Browse files
committed
chore: remove canary usage on extensions tests
1 parent 0a7c0a7 commit aab83b9

3 files changed

Lines changed: 3 additions & 12 deletions

File tree

scripts/test.mjs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,6 @@ async function runTests(attempt) {
9292
});
9393
}
9494

95-
const chromePath = installChrome('146.0.7680.31');
96-
process.env.CHROME_M146_EXECUTABLE_PATH = chromePath;
97-
9895
const maxAttempts = shouldRetry ? 3 : 1;
9996
let exitCode = 1;
10097

tests/tools/extensions.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,7 @@ describe('extension', () => {
148148
);
149149
assert.ok(pageTargetAfter, 'Page should exist after action');
150150
},
151-
{
152-
executablePath: process.env.CHROME_M146_EXECUTABLE_PATH,
153-
},
151+
{},
154152
{
155153
categoryExtensions: true,
156154
} as ParsedArguments,

tests/tools/pages.test.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,7 @@ describe('pages', () => {
8989
);
9090
t.assert.snapshot?.(text);
9191
},
92-
{
93-
executablePath: process.env.CHROME_M146_EXECUTABLE_PATH,
94-
},
92+
{},
9593
{
9694
categoryExtensions: true,
9795
} as ParsedArguments,
@@ -196,9 +194,7 @@ describe('pages', () => {
196194
);
197195
t.assert.snapshot?.(text);
198196
},
199-
{
200-
executablePath: process.env.CHROME_M146_EXECUTABLE_PATH,
201-
},
197+
{},
202198
{
203199
categoryExtensions: true,
204200
} as ParsedArguments,

0 commit comments

Comments
 (0)