Skip to content

Commit

Permalink
webkit system tests
Browse files Browse the repository at this point in the history
  • Loading branch information
flotwig committed Aug 30, 2022
1 parent e41dd70 commit 5137354
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1448,6 +1448,13 @@ jobs:
- run-system-tests:
browser: firefox

system-tests-webkit:
<<: *defaults
parallelism: 8
steps:
- run-system-tests:
browser: webkit

system-tests-non-root:
<<: *defaults
steps:
Expand Down
1 change: 1 addition & 0 deletions system-tests/lib/dep-installer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ export async function scaffoldCommonNodeModules () {
'jimp',
'lazy-ass',
'lodash',
'playwright-webkit',
'proxyquire',
'semver',
'systeminformation',
Expand Down
2 changes: 1 addition & 1 deletion system-tests/lib/normalizeStdout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import _ from 'lodash'

export const e2ePath = Fixtures.projectPath('e2e')

export const DEFAULT_BROWSERS = ['electron', 'chrome', 'firefox']
export const DEFAULT_BROWSERS = ['electron', 'chrome', 'firefox', 'webkit']

export const pathUpToProjectName = Fixtures.projectPath('')

Expand Down
4 changes: 2 additions & 2 deletions system-tests/lib/system-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ require(`@packages/server/lib/project-base`)

type CypressConfig = { [key: string]: any }

export type BrowserName = 'electron' | 'firefox' | 'chrome'
| '!electron' | '!chrome' | '!firefox'
export type BrowserName = 'electron' | 'firefox' | 'chrome' | 'webkit'
| '!electron' | '!chrome' | '!firefox' | '!webkit'

type ExecResult = {
code: number
Expand Down

0 comments on commit 5137354

Please sign in to comment.