mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-08 08:37:42 +00:00
chore(web): gesture-recognizer stability check update
This commit is contained in:
parent
dbf155cf63
commit
5d77b2acd5
2 changed files with 10 additions and 5 deletions
|
|
@ -1,11 +1,13 @@
|
|||
// @ts-check
|
||||
import BASE_CONFIG from './web-test-runner.config.mjs';
|
||||
import teamcityReporter from '@keymanapp/common-test-resources/test-runner-TC-reporter.mjs';
|
||||
import { sessionStabilityReporter } from '@keymanapp/common-test-resources/test-runner-stability-reporter.mjs';
|
||||
|
||||
/** @type {import('@web/test-runner').TestRunnerConfig} */
|
||||
export default {
|
||||
...BASE_CONFIG,
|
||||
reporters: [
|
||||
teamcityReporter() /* custom-written, for CI-friendly reports */
|
||||
teamcityReporter(), /* custom-written, for CI-friendly reports */
|
||||
sessionStabilityReporter({ciMode: true})
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
// @ts-check
|
||||
import { devices, playwrightLauncher } from '@web/test-runner-playwright';
|
||||
import { summaryReporter } from '@web/test-runner';
|
||||
import { defaultReporter, summaryReporter } from '@web/test-runner';
|
||||
import { LauncherWrapper, sessionStabilityReporter } from '@keymanapp/common-test-resources/test-runner-stability-reporter.mjs'
|
||||
import { esbuildPlugin } from '@web/dev-server-esbuild';
|
||||
import { importMapsPlugin } from '@web/dev-server-import-maps';
|
||||
import { dirname, resolve } from 'path';
|
||||
|
|
@ -15,9 +16,9 @@ export default {
|
|||
browsers: [
|
||||
// These are the same type - and probably the same _instances_ - as are visible within the reporter!
|
||||
// Probably a helpful fact to resolve name disambiguation.
|
||||
playwrightLauncher({ product: 'chromium' }),
|
||||
playwrightLauncher({ product: 'firefox' }),
|
||||
playwrightLauncher({ product: 'webkit' })
|
||||
new LauncherWrapper(playwrightLauncher({ product: 'chromium' })),
|
||||
new LauncherWrapper(playwrightLauncher({ product: 'firefox' })),
|
||||
new LauncherWrapper(playwrightLauncher({ product: 'webkit', concurrency: 1 }))
|
||||
],
|
||||
concurrency: 10,
|
||||
nodeResolve: true,
|
||||
|
|
@ -50,6 +51,8 @@ export default {
|
|||
],
|
||||
reporters: [
|
||||
summaryReporter({}), /* local-dev mocha-style */
|
||||
sessionStabilityReporter({}),
|
||||
defaultReporter({})
|
||||
],
|
||||
/*
|
||||
Un-comment the next two lines for easy interactive debugging; it'll launch the
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue