Skip to content

Commit

Permalink
ci(playwright): attempt only using chromium
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanClementsHax committed Oct 18, 2023
1 parent 962e538 commit 00600c0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ export default defineConfig({
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] }
},
}

{
name: 'firefox',
use: { ...devices['Desktop Firefox'] }
},
// {
// name: 'firefox',
// use: { ...devices['Desktop Firefox'] }
// },

{
name: 'webkit',
use: { ...devices['Desktop Safari'] }
}
// {
// name: 'webkit',
// use: { ...devices['Desktop Safari'] }
// }

/* Test against mobile viewports. */
// {
Expand Down
2 changes: 1 addition & 1 deletion e2e/test_repos/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async function openWithConfig(
let started = false
let stdout = ''
const rejectTimeout = setTimeout(() => {
reject(new Error('Timed out waiting for remix-serve to start'))
reject(new Error('Timed out waiting for npm run start to start'))
}, 20000)
serveProcess.stderr.pipe(process.stderr)
// 5. wait for port log
Expand Down

0 comments on commit 00600c0

Please sign in to comment.