Skip to content

Instantly share code, notes, and snippets.

@cmidgley
Created December 6, 2021 16:47
Show Gist options
  • Save cmidgley/4dcb012272d797b1c4fc3846e172271c to your computer and use it in GitHub Desktop.
Save cmidgley/4dcb012272d797b1c4fc3846e172271c to your computer and use it in GitHub Desktop.
Wallaby Diagnostic
{
editorVersion: '1.62.3',
pluginVersion: '1.0.319',
editorType: 'VSCode',
osVersion: 'linux 5.10.60.1-microsoft-standard-WSL2',
nodeVersion: 'v16.13.1',
coreVersion: '1.0.1185',
checksum: 'OTMyZDExYWM3ZDhkZjBkYWQ1Mjk5Y2I0ODExZWNlOWUsMTY3OTA5NzYwMDAwMCww',
config: {
tests: [
{ pattern: 'src/**/*.test.ts', ignore: false, trigger: true, load: true, test: true, order: 2 },
{ pattern: 'test/**/*.test.ts', exclude: true, ignore: false, trigger: true, load: true, test: true, order: 3 }
],
diagnostics: {
jest: {
config: {
configs: [
{
automock: false,
cache: true,
cacheDirectory: '/tmp/jest_0',
clearMocks: false,
coveragePathIgnorePatterns: [ '/node_modules/' ],
cwd: '<rootDir>',
dependencyExtractor: undefined,
detectLeaks: false,
detectOpenHandles: false,
displayName: undefined,
errorOnDeprecated: false,
extensionsToTreatAsEsm: [],
extraGlobals: [],
filter: undefined,
forceCoverageMatch: [],
globalSetup: undefined,
globalTeardown: undefined,
globals: {},
haste: { computeSha1: false, enableSymlinks: false, forceNodeFilesystemAPI: false, throwOnModuleCollision: false },
injectGlobals: true,
moduleDirectories: [ 'node_modules' ],
moduleFileExtensions: [ 'js', 'jsx', 'ts', 'tsx', 'json', 'node' ],
moduleLoader: undefined,
moduleNameMapper: [
[
'^@compiler/(.*)$',
[
'<rootDir>/src/noddable/$1',
'<rootDir>/src/ModBuilder/$1',
'<rootDir>/src/SlotManager/$1',
'<rootDir>/src/WebApp/$1',
'<rootDir>/src/WorkspaceManager/$1'
]
]
],
modulePathIgnorePatterns: [],
modulePaths: undefined,
name: 'a8f391545abf414779fe18c273ab9d7b',
prettierPath: 'prettier',
resetMocks: false,
resetModules: false,
resolver: undefined,
restoreMocks: false,
rootDir: '<rootDir>',
roots: [ '<rootDir>' ],
runner: '<rootDir>/node_modules/jest-runner/build/index.js',
setupFiles: [],
setupFilesAfterEnv: [],
skipFilter: false,
skipNodeResolution: undefined,
slowTestThreshold: 5,
snapshotFormat: undefined,
snapshotResolver: undefined,
snapshotSerializers: [],
testEnvironment: '<rootDir>/node_modules/jest-environment-node/build/index.js',
testEnvironmentOptions: {},
testLocationInResults: false,
testMatch: [ '**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[tj]s?(x)' ],
testPathIgnorePatterns: [ '/node_modules/' ],
testRegex: [],
testRunner: '<rootDir>/node_modules/jest-circus/runner.js',
testURL: 'http://localhost',
timers: 'real',
transform: [ [ '^.+\\.tsx?$', '<rootDir>/node_modules/ts-jest/dist/index.js', {} ] ],
transformIgnorePatterns: [ '/node_modules/', '\\.pnp\\.[^\\/]+$' ],
unmockedModulePathPatterns: undefined,
watchPathIgnorePatterns: []
}
],
globalConfig: {
bail: 0,
changedFilesWithAncestor: false,
changedSince: undefined,
collectCoverage: false,
collectCoverageFrom: [],
collectCoverageOnlyFrom: undefined,
coverageDirectory: '<rootDir>/coverage',
coverageProvider: 'babel',
coverageReporters: [ 'json', 'text', 'lcov', 'clover' ],
coverageThreshold: undefined,
detectLeaks: false,
detectOpenHandles: false,
errorOnDeprecated: false,
expand: false,
filter: undefined,
findRelatedTests: false,
forceExit: false,
globalSetup: undefined,
globalTeardown: undefined,
json: false,
lastCommit: false,
listTests: false,
logHeapUsage: false,
maxConcurrency: 5,
maxWorkers: 15,
noSCM: undefined,
noStackTrace: false,
nonFlagArgs: undefined,
notify: false,
notifyMode: 'failure-change',
onlyChanged: false,
onlyFailures: false,
outputFile: undefined,
passWithNoTests: false,
projects: [],
replname: undefined,
reporters: undefined,
rootDir: '<rootDir>',
runTestsByPath: false,
silent: undefined,
skipFilter: false,
snapshotFormat: undefined,
testFailureExitCode: 1,
testNamePattern: undefined,
testPathPattern: '',
testResultsProcessor: undefined,
testSequencer: '<rootDir>/node_modules/@jest/test-sequencer/build/index.js',
testTimeout: undefined,
updateSnapshot: 'new',
useStderr: false,
verbose: undefined,
watch: false,
watchAll: false,
watchPlugins: undefined,
watchman: true
},
hasDeprecationWarnings: false,
wallaby: {
roots: [],
watchPathIgnorePatterns: [ '/node_modules/', '\\./dist/|\\./build/|\\./coverage/|\\./git/|/\\..+/', '/tmp/jest_0', 'coverage' ],
testPathIgnorePatterns: [ '/node_modules/', '\\./dist/|\\./build/|\\./coverage/|\\./git/|/\\..+/', '/tmp/jest_0', 'coverage' ],
testMatch: [ '**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[tj]s?(x)' ],
testRegex: []
}
}
}
},
testFramework: { version: 'jest@24.8.0', configurator: 'jest@24.8.0', reporter: 'jest@24.8.0', starter: 'jest@24.8.0', autoDetected: true },
filesWithCoverageCalculated: [],
filesWithNoCoverageCalculated: [],
globalSetup: false,
micromatch: true,
files: [
{ pattern: '/node_modules/', regexp: /\/node_modules\//, ignore: true, trigger: true, load: true },
{ pattern: '\\./dist/|\\./build/|\\./coverage/|\\./git/|/\\..+/', regexp: /\.\/dist\/|\.\/build\/|\.\/coverage\/|\.\/git\/|\/\..+\//, ignore: true, trigger: true, load: true },
{ pattern: '/tmp/jest_0', regexp: /\/tmp\/jest_0/, ignore: true, trigger: true, load: true },
{ pattern: 'coverage', regexp: /coverage/, ignore: true, trigger: true, load: true },
{ pattern: '**/**', ignore: false, trigger: true, load: true, order: 1 },
{ pattern: 'src/**/*.test.ts', ignore: true, trigger: true, load: true },
{ pattern: 'test/**/*.test.ts', exclude: true, ignore: true, trigger: true, load: true }
],
runAllTestsInAffectedTestFile: false,
updateNoMoreThanOneSnapshotPerTestFileRun: false,
addModifiedTestFileToExclusiveTestRun: true,
compilers: {},
preprocessors: {},
maxConsoleMessagesPerTest: 100,
autoConsoleLog: true,
delays: { run: 0, edit: 100, update: 0 },
workers: { initial: 0, regular: 0, recycle: false },
teardown: undefined,
hints: {
ignoreCoverage: '__REGEXP /ignore coverage|istanbul ignore/',
ignoreCoverageForFile: '__REGEXP /ignore file coverage/',
commentAutoLog: '?',
testFileSelection: { include: '__REGEXP /file\\.only/', exclude: '__REGEXP /file\\.skip/' }
},
automaticTestFileSelection: true,
runSelectedTestsOnly: false,
mapConsoleMessagesStackTrace: false,
extensions: {},
env: { type: 'node', params: {}, runner: '/usr/local/bin/node', viewportSize: { width: 800, height: 600 }, options: { width: 800, height: 600 }, bundle: true },
reportUnhandledPromises: true,
slowTestThreshold: 75,
lowCoverageThreshold: 80,
loose: true,
configCode: 'auto.detect#-398763415'
},
packageJSON: {
dependencies: { express: '^4.17.1' },
devDependencies: {
'@types/express': '^4.17.13',
'@types/jest': '^27.0.3',
'@types/node': '^16.11.9',
jest: '^27.3.1',
portfinder: '^1.0.28',
supertest: '^6.1.6',
'ts-jest': '^27.0.7',
'ts-node': '^10.4.0',
typescript: '^4.5.2',
'@types/supertest': '^2.0.11',
'tsconfig-paths': '^3.12.0'
}
},
fs: { numberOfFiles: 21 },
debug: [
'2021-12-06T16:28:37.373Z angular/cli config Angular CLI not found.\n',
'2021-12-06T16:28:37.831Z jest/config Detected Jest.\n',
'2021-12-06T16:28:37.832Z jest/config Configured Jest.\n',
'2021-12-06T16:28:37.833Z project Wallaby Node version: v16.13.1\n',
'2021-12-06T16:28:37.833Z project Wallaby config: <rootDir>/auto.detect\n',
'2021-12-06T16:28:39.364Z project File cache: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/projects/287c3d8e155a075b\n',
'2021-12-06T16:28:39.427Z uiService Listening port 51235\n',
'2021-12-06T16:28:39.437Z project Config file change detected, invalidating local cache\n',
'2021-12-06T16:28:39.444Z workers Parallelism for initial run: 14, for regular run: 7\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #0\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #1\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #2\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #3\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #4\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #5\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #6\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #7\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #8\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #9\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #10\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #11\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #12\n',
'2021-12-06T16:28:39.445Z workers Starting run worker instance #13\n',
'2021-12-06T16:28:39.447Z workers Web server is listening at 41127\n',
'2021-12-06T16:28:39.447Z project File cache requires some updates, waiting required files from IDE\n',
'2021-12-06T16:28:39.813Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:28:39.814Z workers Started run worker instance (delayed) #1\n',
'2021-12-06T16:28:39.815Z workers Started run worker instance (delayed) #2\n',
'2021-12-06T16:28:39.815Z workers Started run worker instance (delayed) #4\n',
'2021-12-06T16:28:39.815Z workers Started run worker instance (delayed) #5\n',
'2021-12-06T16:28:39.816Z workers Started run worker instance (delayed) #6\n',
'2021-12-06T16:28:39.824Z workers Started run worker instance (delayed) #3\n',
'2021-12-06T16:28:39.839Z project Stopping process pool\n',
'2021-12-06T16:28:39.841Z project Test run started; run priority: 3\n',
'2021-12-06T16:28:39.842Z project Running all tests\n',
'2021-12-06T16:28:39.845Z workers Starting test run, priority: 3\n',
'2021-12-06T16:28:39.845Z workers Distributing tests between 14 workers\n',
'2021-12-06T16:28:39.846Z workers Running tests in parallel\n',
'2021-12-06T16:28:39.846Z nodeRunner Starting sandbox [worker #0, session #xo2na]\n',
'2021-12-06T16:28:39.847Z nodeRunner Starting sandbox [worker #1, session #5b1bx]\n',
'2021-12-06T16:28:39.847Z nodeRunner Starting sandbox [worker #2, session #anubk]\n',
'2021-12-06T16:28:39.847Z nodeRunner Starting sandbox [worker #3, session #31mn5]\n',
'2021-12-06T16:28:39.847Z nodeRunner Preparing sandbox [worker #0, session #xo2na]\n',
'2021-12-06T16:28:39.847Z nodeRunner Preparing sandbox [worker #1, session #5b1bx]\n',
'2021-12-06T16:28:39.847Z nodeRunner Preparing sandbox [worker #2, session #anubk]\n',
'2021-12-06T16:28:39.847Z nodeRunner Preparing sandbox [worker #3, session #31mn5]\n',
'2021-12-06T16:28:39.847Z nodeRunner Prepared sandbox [worker #0, session #xo2na]\n',
'2021-12-06T16:28:39.847Z nodeRunner Prepared sandbox [worker #1, session #5b1bx]\n',
'2021-12-06T16:28:39.847Z nodeRunner Prepared sandbox [worker #2, session #anubk]\n',
'2021-12-06T16:28:39.847Z nodeRunner Prepared sandbox [worker #3, session #31mn5]\n',
'2021-12-06T16:28:39.848Z workers [worker #0, session #xo2na] Running tests in sandbox\n',
'2021-12-06T16:28:39.849Z workers [worker #1, session #5b1bx] Running tests in sandbox\n',
'2021-12-06T16:28:39.850Z workers [worker #2, session #anubk] Running tests in sandbox\n',
'2021-12-06T16:28:39.851Z workers [worker #3, session #31mn5] Running tests in sandbox\n',
'2021-12-06T16:28:39.857Z workers Started run worker instance (delayed) #7\n',
'2021-12-06T16:28:39.872Z workers Started run worker instance (delayed) #8\n',
'2021-12-06T16:28:39.891Z workers Started run worker instance (delayed) #9\n',
'2021-12-06T16:28:39.915Z workers Started run worker instance (delayed) #10\n',
'2021-12-06T16:28:39.931Z workers Started run worker instance (delayed) #11\n',
'2021-12-06T16:28:39.966Z workers Started run worker instance (delayed) #12\n',
'2021-12-06T16:28:39.988Z workers Started run worker instance (delayed) #13\n',
'2021-12-06T16:28:45.638Z workers Scheduling Jest Test Run (31mn5): 2021-12-06T16:28:40.641Z\n',
'2021-12-06T16:28:45.668Z workers [31mn5] Loaded unknown number of test(s)\n',
'2021-12-06T16:28:45.669Z workers [31mn5] Test executed: returns correct default root path for rootPath\n',
'2021-12-06T16:28:45.669Z workers [31mn5] Test executed: returns correct default adjusted path for rootPath\n',
'2021-12-06T16:28:45.670Z workers [31mn5] Test executed: will construct and clear existing artifacts from the file system\n',
'2021-12-06T16:28:45.670Z workers [31mn5] Test executed: will construct and and handle no artifacts in the file system\n',
'2021-12-06T16:28:45.670Z workers [31mn5] Test executed: Allocates slots in order\n',
'2021-12-06T16:28:45.673Z workers [31mn5] Run 5 test(s), skipped 0 test(s)\n',
'2021-12-06T16:28:45.674Z workers Jest Test Run Complete (31mn5): 2021-12-06T16:28:45.653Z\n',
'2021-12-06T16:28:45.678Z workers [31mn5] Sandbox is responsive, closing it\n',
'2021-12-06T16:28:45.713Z workers Scheduling Jest Test Run (xo2na): 2021-12-06T16:28:40.683Z\n',
'2021-12-06T16:28:45.747Z workers [xo2na] Loaded unknown number of test(s)\n',
'2021-12-06T16:28:45.752Z workers Scheduling Jest Test Run (5b1bx): 2021-12-06T16:28:40.640Z\n',
'2021-12-06T16:28:45.762Z workers [5b1bx] Loaded unknown number of test(s)\n',
'2021-12-06T16:28:45.762Z workers [5b1bx] Test executed: will construct\n',
'2021-12-06T16:28:45.763Z workers [5b1bx] Test executed: creates a valid slotPath for slot #1\n',
'2021-12-06T16:28:45.773Z workers [5b1bx] Test executed: creates a valid slotPath for slot #3\n',
'2021-12-06T16:28:45.774Z workers [5b1bx] Test executed: creates a valid modName\n',
'2021-12-06T16:28:45.774Z workers [5b1bx] Test executed: creates a valid modPath\n',
'2021-12-06T16:28:45.775Z workers [5b1bx] Test executed: creates a valid manifestFilePath\n',
'2021-12-06T16:28:45.775Z workers [5b1bx] Test executed: creates a valid tsconfigFilePath\n',
'2021-12-06T16:28:45.776Z workers [5b1bx] Test executed: creates a valid scriptFilePath\n',
'2021-12-06T16:28:45.776Z workers [5b1bx] Test executed: creates a valid noddableBinaryFilePath\n',
'2021-12-06T16:28:45.777Z workers [5b1bx] Test executed: creates a valid buildScriptPath\n',
'2021-12-06T16:28:45.777Z workers [5b1bx] Test executed: creates valid modBinaryFilePath\n',
'2021-12-06T16:28:45.778Z workers [5b1bx] Test executed: initializes with creating directory\n',
'2021-12-06T16:28:45.779Z workers [5b1bx] Test executed: releases and removes directory when keepArtifacts is false\n',
'2021-12-06T16:28:45.779Z workers [5b1bx] Test executed: releases but does not remove directory when keepArtifacts is true\n',
'2021-12-06T16:28:45.783Z workers [5b1bx] Run 14 test(s), skipped 0 test(s)\n',
'2021-12-06T16:28:45.783Z workers Jest Test Run Complete (5b1bx): 2021-12-06T16:28:45.772Z\n',
'2021-12-06T16:28:45.785Z workers [5b1bx] Sandbox is responsive, closing it\n',
'2021-12-06T16:28:45.934Z workers Scheduling Jest Test Run (anubk): 2021-12-06T16:28:40.650Z\n',
'2021-12-06T16:28:45.979Z workers [anubk] Loaded unknown number of test(s)\n',
'2021-12-06T16:28:46.918Z workers [xo2na] Test executed: will compile a good script (Moddable)\n',
'2021-12-06T16:28:46.999Z workers [anubk] Test executed: will compile a valid script\n',
'2021-12-06T16:28:47.542Z workers [xo2na] Test executed: will compile Noddable script into CommonJS\n',
'2021-12-06T16:28:47.605Z workers [anubk] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:28:48.670Z workers [xo2na] Test executed: will report errors when using non-exported methods (Moddable)\n',
'2021-12-06T16:28:48.750Z workers [anubk] Test executed: will fail an invalid script\n',
'2021-12-06T16:28:48.756Z workers [anubk] Test executed: will respond with a page on root\n',
'2021-12-06T16:28:48.786Z workers [anubk] Test executed: will respond with a version number on /version\n',
'2021-12-06T16:28:48.793Z workers [anubk] Run 5 test(s), skipped 0 test(s)\n',
'2021-12-06T16:28:48.794Z workers Jest Test Run Complete (anubk): 2021-12-06T16:28:48.784Z\n',
'2021-12-06T16:28:48.796Z workers [anubk] Sandbox is responsive, closing it\n',
'2021-12-06T16:28:49.236Z workers [xo2na] Test executed: will report errors when using non-exported methods (Noddable)\n',
'2021-12-06T16:28:49.237Z workers [xo2na] Test executed: has Wallaby expected CPUs\n',
'2021-12-06T16:28:50.114Z workers [xo2na] Test executed: will give errors on a invalid script\n',
'2021-12-06T16:28:50.996Z workers [xo2na] Test executed: will give stdout with debug enabled on script\n',
'2021-12-06T16:28:51.836Z workers [xo2na] Test executed: will give stderr and stdout with debug enabled on script\n',
'2021-12-06T16:28:51.865Z workers [xo2na] Run 8 test(s), skipped 0 test(s)\n',
'2021-12-06T16:28:51.865Z workers Jest Test Run Complete (xo2na): 2021-12-06T16:28:51.856Z\n',
'2021-12-06T16:28:51.867Z workers [xo2na] Sandbox is responsive, closing it\n',
'2021-12-06T16:28:51.868Z workers Merging parallel test run results\n',
'2021-12-06T16:28:51.869Z project Test run finished\n',
'2021-12-06T16:28:51.870Z project Processed console.log entries\n',
'2021-12-06T16:28:51.870Z project Processed loading sequences\n',
'2021-12-06T16:28:51.870Z project Processed executed tests\n',
'2021-12-06T16:28:51.873Z project Processed code coverage\n',
'2021-12-06T16:28:51.895Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:30:10.062Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:10.074Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:10.075Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:10.076Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:10.076Z nodeRunner Starting sandbox [worker #0, session #88r1j]\n',
'2021-12-06T16:30:10.076Z nodeRunner Preparing sandbox [worker #0, session #88r1j]\n',
'2021-12-06T16:30:10.077Z nodeRunner Prepared sandbox [worker #0, session #88r1j]\n',
'2021-12-06T16:30:10.077Z workers [worker #0, session #88r1j] Running tests in sandbox\n',
'2021-12-06T16:30:10.363Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:10.364Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:10.364Z project Test run was cancelled\n',
'2021-12-06T16:30:10.486Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:10.487Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:10.487Z project Test run was cancelled\n',
'2021-12-06T16:30:10.644Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:10.644Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:10.644Z project Test run was cancelled\n',
'2021-12-06T16:30:11.292Z workers Scheduling Jest Test Run (88r1j): 2021-12-06T16:30:10.080Z\n',
'2021-12-06T16:30:11.337Z workers [88r1j] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:11.338Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:11.338Z project Test run finished\n',
'2021-12-06T16:30:11.338Z project Test run data re-queued\n',
'2021-12-06T16:30:11.361Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:11.361Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:11.362Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:11.362Z nodeRunner Starting sandbox [worker #0, session #ejr00]\n',
'2021-12-06T16:30:11.363Z nodeRunner Preparing sandbox [worker #0, session #ejr00]\n',
'2021-12-06T16:30:11.363Z nodeRunner Prepared sandbox [worker #0, session #ejr00]\n',
'2021-12-06T16:30:11.363Z workers [worker #0, session #ejr00] Running tests in sandbox\n',
'2021-12-06T16:30:11.621Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:11.622Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:11.623Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:30:11.702Z workers Scheduling Jest Test Run (ejr00): 2021-12-06T16:30:11.365Z\n',
'2021-12-06T16:30:11.728Z workers [ejr00] Loaded unknown number of test(s)\n',
'2021-12-06T16:30:11.746Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:11.747Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:11.747Z project Test run was cancelled\n',
'2021-12-06T16:30:11.751Z workers [ejr00] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:11.752Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:11.752Z project Test run finished\n',
'2021-12-06T16:30:11.752Z project Test run data re-queued\n',
'2021-12-06T16:30:11.802Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:11.803Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:11.804Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:11.805Z nodeRunner Starting sandbox [worker #0, session #3so58]\n',
'2021-12-06T16:30:11.805Z nodeRunner Preparing sandbox [worker #0, session #3so58]\n',
'2021-12-06T16:30:11.805Z nodeRunner Prepared sandbox [worker #0, session #3so58]\n',
'2021-12-06T16:30:11.805Z workers [worker #0, session #3so58] Running tests in sandbox\n',
'2021-12-06T16:30:12.064Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:12.065Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:12.065Z project Test run was cancelled\n',
'2021-12-06T16:30:12.228Z workers Scheduling Jest Test Run (3so58): 2021-12-06T16:30:11.807Z\n',
'2021-12-06T16:30:12.246Z workers [3so58] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:12.246Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:12.246Z project Test run finished\n',
'2021-12-06T16:30:12.246Z project Test run data re-queued\n',
'2021-12-06T16:30:12.274Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:12.274Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:12.278Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:12.278Z nodeRunner Starting sandbox [worker #0, session #ncwfp]\n',
'2021-12-06T16:30:12.278Z nodeRunner Preparing sandbox [worker #0, session #ncwfp]\n',
'2021-12-06T16:30:12.278Z nodeRunner Prepared sandbox [worker #0, session #ncwfp]\n',
'2021-12-06T16:30:12.278Z workers [worker #0, session #ncwfp] Running tests in sandbox\n',
'2021-12-06T16:30:12.431Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:12.432Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:12.432Z project Test run was cancelled\n',
'2021-12-06T16:30:12.770Z workers Scheduling Jest Test Run (ncwfp): 2021-12-06T16:30:12.286Z\n',
'2021-12-06T16:30:13.052Z workers Jest Test Run Complete (ncwfp): 2021-12-06T16:30:12.760Z\n',
'2021-12-06T16:30:13.059Z workers [ncwfp] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:13.060Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:13.061Z project Test run finished\n',
'2021-12-06T16:30:13.061Z project Test run data re-queued\n',
'2021-12-06T16:30:13.073Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:13.080Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:13.081Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:13.081Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:13.081Z nodeRunner Starting sandbox [worker #0, session #kk80b]\n',
'2021-12-06T16:30:13.081Z nodeRunner Preparing sandbox [worker #0, session #kk80b]\n',
'2021-12-06T16:30:13.081Z nodeRunner Prepared sandbox [worker #0, session #kk80b]\n',
'2021-12-06T16:30:13.081Z workers [worker #0, session #kk80b] Running tests in sandbox\n',
'2021-12-06T16:30:13.341Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:13.342Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:13.342Z project Test run was cancelled\n',
'2021-12-06T16:30:13.531Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:13.532Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:13.532Z project Test run was cancelled\n',
'2021-12-06T16:30:13.763Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:13.764Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:13.764Z project Test run was cancelled\n',
'2021-12-06T16:30:13.892Z workers Scheduling Jest Test Run (kk80b): 2021-12-06T16:30:13.102Z\n',
'2021-12-06T16:30:13.931Z workers Jest Test Run Complete (kk80b): 2021-12-06T16:30:13.889Z\n',
'2021-12-06T16:30:13.932Z workers [kk80b] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:13.933Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:13.933Z project Test run finished\n',
'2021-12-06T16:30:13.934Z project Test run data re-queued\n',
'2021-12-06T16:30:13.983Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:13.984Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:13.984Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:13.984Z nodeRunner Starting sandbox [worker #0, session #qz53y]\n',
'2021-12-06T16:30:13.984Z nodeRunner Preparing sandbox [worker #0, session #qz53y]\n',
'2021-12-06T16:30:13.984Z nodeRunner Prepared sandbox [worker #0, session #qz53y]\n',
'2021-12-06T16:30:13.984Z workers [worker #0, session #qz53y] Running tests in sandbox\n',
'2021-12-06T16:30:14.406Z workers Scheduling Jest Test Run (qz53y): 2021-12-06T16:30:13.987Z\n',
'2021-12-06T16:30:14.419Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:14.421Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:14.421Z project Test run was cancelled\n',
'2021-12-06T16:30:14.434Z workers Jest Test Run Complete (qz53y): 2021-12-06T16:30:14.404Z\n',
'2021-12-06T16:30:14.435Z workers [qz53y] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:14.435Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:14.436Z project Test run finished\n',
'2021-12-06T16:30:14.436Z project Test run data re-queued\n',
'2021-12-06T16:30:14.480Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:14.481Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:14.481Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:14.481Z nodeRunner Starting sandbox [worker #0, session #wqb7l]\n',
'2021-12-06T16:30:14.481Z nodeRunner Preparing sandbox [worker #0, session #wqb7l]\n',
'2021-12-06T16:30:14.481Z nodeRunner Prepared sandbox [worker #0, session #wqb7l]\n',
'2021-12-06T16:30:14.481Z workers [worker #0, session #wqb7l] Running tests in sandbox\n',
'2021-12-06T16:30:14.737Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:14.739Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:14.739Z project Test run was cancelled\n',
'2021-12-06T16:30:14.886Z workers Scheduling Jest Test Run (wqb7l): 2021-12-06T16:30:14.483Z\n',
'2021-12-06T16:30:14.897Z workers Jest Test Run Complete (wqb7l): 2021-12-06T16:30:14.875Z\n',
'2021-12-06T16:30:14.898Z workers [wqb7l] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:14.898Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:14.899Z project Test run finished\n',
'2021-12-06T16:30:14.899Z project Test run data re-queued\n',
'2021-12-06T16:30:14.949Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:14.949Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:14.950Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:14.950Z nodeRunner Starting sandbox [worker #0, session #jb9is]\n',
'2021-12-06T16:30:14.950Z nodeRunner Preparing sandbox [worker #0, session #jb9is]\n',
'2021-12-06T16:30:14.950Z nodeRunner Prepared sandbox [worker #0, session #jb9is]\n',
'2021-12-06T16:30:14.950Z workers [worker #0, session #jb9is] Running tests in sandbox\n',
'2021-12-06T16:30:15.073Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:15.075Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:15.075Z project Test run was cancelled\n',
'2021-12-06T16:30:15.179Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:15.180Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:15.180Z project Test run was cancelled\n',
'2021-12-06T16:30:15.303Z workers Scheduling Jest Test Run (jb9is): 2021-12-06T16:30:14.954Z\n',
'2021-12-06T16:30:15.314Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:15.314Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:15.314Z project Test run was cancelled\n',
'2021-12-06T16:30:15.357Z workers Jest Test Run Complete (jb9is): 2021-12-06T16:30:15.301Z\n',
'2021-12-06T16:30:15.358Z workers [jb9is] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:15.359Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:15.359Z project Test run finished\n',
'2021-12-06T16:30:15.360Z project Test run data re-queued\n',
'2021-12-06T16:30:15.366Z workers Jest Test Run Complete (88r1j): 2021-12-06T16:30:15.351Z\n',
'2021-12-06T16:30:15.371Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:15.371Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:15.372Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:15.372Z nodeRunner Starting sandbox [worker #0, session #yp92g]\n',
'2021-12-06T16:30:15.372Z nodeRunner Preparing sandbox [worker #0, session #yp92g]\n',
'2021-12-06T16:30:15.372Z nodeRunner Prepared sandbox [worker #0, session #yp92g]\n',
'2021-12-06T16:30:15.372Z workers [worker #0, session #yp92g] Running tests in sandbox\n',
'2021-12-06T16:30:15.515Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:15.516Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:15.516Z project Test run was cancelled\n',
'2021-12-06T16:30:15.675Z workers Scheduling Jest Test Run (yp92g): 2021-12-06T16:30:15.379Z\n',
'2021-12-06T16:30:15.685Z workers Jest Test Run Complete (yp92g): 2021-12-06T16:30:15.672Z\n',
'2021-12-06T16:30:15.685Z workers [yp92g] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:15.686Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:15.686Z project Test run finished\n',
'2021-12-06T16:30:15.686Z project Test run data re-queued\n',
'2021-12-06T16:30:15.735Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:15.735Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:15.736Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:15.736Z nodeRunner Starting sandbox [worker #0, session #5zdnv]\n',
'2021-12-06T16:30:15.736Z nodeRunner Preparing sandbox [worker #0, session #5zdnv]\n',
'2021-12-06T16:30:15.736Z nodeRunner Prepared sandbox [worker #0, session #5zdnv]\n',
'2021-12-06T16:30:15.736Z workers [worker #0, session #5zdnv] Running tests in sandbox\n',
'2021-12-06T16:30:15.795Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:15.796Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:15.796Z project Test run was cancelled\n',
'2021-12-06T16:30:16.078Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:16.080Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:16.080Z project Test run was cancelled\n',
'2021-12-06T16:30:16.090Z workers Scheduling Jest Test Run (5zdnv): 2021-12-06T16:30:15.738Z\n',
'2021-12-06T16:30:16.099Z workers Jest Test Run Complete (5zdnv): 2021-12-06T16:30:16.088Z\n',
'2021-12-06T16:30:16.100Z workers [5zdnv] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:16.100Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:16.100Z project Test run finished\n',
'2021-12-06T16:30:16.100Z project Test run data re-queued\n',
'2021-12-06T16:30:16.135Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:16.135Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:16.136Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:16.136Z nodeRunner Starting sandbox [worker #0, session #sr93w]\n',
'2021-12-06T16:30:16.136Z nodeRunner Preparing sandbox [worker #0, session #sr93w]\n',
'2021-12-06T16:30:16.136Z nodeRunner Prepared sandbox [worker #0, session #sr93w]\n',
'2021-12-06T16:30:16.136Z workers [worker #0, session #sr93w] Running tests in sandbox\n',
'2021-12-06T16:30:16.183Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:16.184Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:16.184Z project Test run was cancelled\n',
'2021-12-06T16:30:16.405Z workers Scheduling Jest Test Run (sr93w): 2021-12-06T16:30:16.138Z\n',
'2021-12-06T16:30:16.415Z workers Jest Test Run Complete (sr93w): 2021-12-06T16:30:16.403Z\n',
'2021-12-06T16:30:16.416Z workers [sr93w] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:16.417Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:16.417Z project Test run finished\n',
'2021-12-06T16:30:16.417Z project Test run data re-queued\n',
'2021-12-06T16:30:16.440Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:16.440Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:16.440Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:16.440Z nodeRunner Starting sandbox [worker #0, session #5eirl]\n',
'2021-12-06T16:30:16.440Z nodeRunner Preparing sandbox [worker #0, session #5eirl]\n',
'2021-12-06T16:30:16.441Z nodeRunner Prepared sandbox [worker #0, session #5eirl]\n',
'2021-12-06T16:30:16.441Z workers [worker #0, session #5eirl] Running tests in sandbox\n',
'2021-12-06T16:30:16.683Z workers Scheduling Jest Test Run (5eirl): 2021-12-06T16:30:16.443Z\n',
'2021-12-06T16:30:16.687Z workers Sandbox (active) [5eirl] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:30:16.693Z workers [5eirl] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:30:16.694Z workers Jest Test Run Complete (5eirl): 2021-12-06T16:30:16.678Z\n',
'2021-12-06T16:30:16.696Z workers [5eirl] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:16.699Z project Test run finished\n',
'2021-12-06T16:30:16.699Z project Processed console.log entries\n',
'2021-12-06T16:30:16.699Z project Processed loading sequences\n',
'2021-12-06T16:30:16.699Z project Processed executed tests\n',
'2021-12-06T16:30:16.700Z project Processed code coverage\n',
'2021-12-06T16:30:16.713Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:30:16.772Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:16.777Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:16.777Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:16.777Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:16.777Z nodeRunner Starting sandbox [worker #0, session #d585r]\n',
'2021-12-06T16:30:16.778Z nodeRunner Preparing sandbox [worker #0, session #d585r]\n',
'2021-12-06T16:30:16.778Z nodeRunner Prepared sandbox [worker #0, session #d585r]\n',
'2021-12-06T16:30:16.778Z workers [worker #0, session #d585r] Running tests in sandbox\n',
'2021-12-06T16:30:16.949Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:16.950Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:16.950Z project Test run was cancelled\n',
'2021-12-06T16:30:17.171Z workers Scheduling Jest Test Run (d585r): 2021-12-06T16:30:16.779Z\n',
'2021-12-06T16:30:17.178Z workers Jest Test Run Complete (d585r): 2021-12-06T16:30:17.169Z\n',
'2021-12-06T16:30:17.179Z workers [d585r] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:17.179Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:17.179Z project Test run finished\n',
'2021-12-06T16:30:17.179Z project Test run data re-queued\n',
'2021-12-06T16:30:17.212Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:17.217Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:17.217Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:17.218Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:17.218Z nodeRunner Starting sandbox [worker #0, session #xqdy9]\n',
'2021-12-06T16:30:17.218Z nodeRunner Preparing sandbox [worker #0, session #xqdy9]\n',
'2021-12-06T16:30:17.218Z nodeRunner Prepared sandbox [worker #0, session #xqdy9]\n',
'2021-12-06T16:30:17.218Z workers [worker #0, session #xqdy9] Running tests in sandbox\n',
'2021-12-06T16:30:17.316Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:17.317Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:17.317Z project Test run was cancelled\n',
'2021-12-06T16:30:17.481Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:17.482Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:17.482Z project Test run was cancelled\n',
'2021-12-06T16:30:17.562Z workers Scheduling Jest Test Run (xqdy9): 2021-12-06T16:30:17.221Z\n',
'2021-12-06T16:30:17.570Z workers Jest Test Run Complete (xqdy9): 2021-12-06T16:30:17.560Z\n',
'2021-12-06T16:30:17.570Z workers [xqdy9] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:17.570Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:17.570Z project Test run finished\n',
'2021-12-06T16:30:17.570Z project Test run data re-queued\n',
'2021-12-06T16:30:17.590Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:17.590Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:17.590Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:17.590Z nodeRunner Starting sandbox [worker #0, session #tk1fm]\n',
'2021-12-06T16:30:17.590Z nodeRunner Preparing sandbox [worker #0, session #tk1fm]\n',
'2021-12-06T16:30:17.590Z nodeRunner Prepared sandbox [worker #0, session #tk1fm]\n',
'2021-12-06T16:30:17.590Z workers [worker #0, session #tk1fm] Running tests in sandbox\n',
'2021-12-06T16:30:17.786Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:17.787Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:17.787Z project Test run was cancelled\n',
'2021-12-06T16:30:17.883Z workers Scheduling Jest Test Run (tk1fm): 2021-12-06T16:30:17.592Z\n',
'2021-12-06T16:30:17.890Z workers Jest Test Run Complete (tk1fm): 2021-12-06T16:30:17.878Z\n',
'2021-12-06T16:30:17.890Z workers [tk1fm] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:17.890Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:17.891Z project Test run finished\n',
'2021-12-06T16:30:17.891Z project Test run data re-queued\n',
'2021-12-06T16:30:17.944Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:17.945Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:17.945Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:17.945Z nodeRunner Starting sandbox [worker #0, session #7wcj2]\n',
'2021-12-06T16:30:17.946Z nodeRunner Preparing sandbox [worker #0, session #7wcj2]\n',
'2021-12-06T16:30:17.946Z nodeRunner Prepared sandbox [worker #0, session #7wcj2]\n',
'2021-12-06T16:30:17.946Z workers [worker #0, session #7wcj2] Running tests in sandbox\n',
'2021-12-06T16:30:18.189Z workers Scheduling Jest Test Run (7wcj2): 2021-12-06T16:30:17.948Z\n',
'2021-12-06T16:30:18.193Z workers Sandbox (active) [7wcj2] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:30:18.201Z workers [7wcj2] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:30:18.203Z workers Jest Test Run Complete (7wcj2): 2021-12-06T16:30:18.187Z\n',
'2021-12-06T16:30:18.207Z workers [7wcj2] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:18.208Z project Test run finished\n',
'2021-12-06T16:30:18.208Z project Processed console.log entries\n',
'2021-12-06T16:30:18.208Z project Processed loading sequences\n',
'2021-12-06T16:30:18.208Z project Processed executed tests\n',
'2021-12-06T16:30:18.209Z project Processed code coverage\n',
'2021-12-06T16:30:18.216Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:30:18.308Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:18.310Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:18.310Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:18.311Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:18.311Z nodeRunner Starting sandbox [worker #0, session #580nr]\n',
'2021-12-06T16:30:18.311Z nodeRunner Preparing sandbox [worker #0, session #580nr]\n',
'2021-12-06T16:30:18.311Z nodeRunner Prepared sandbox [worker #0, session #580nr]\n',
'2021-12-06T16:30:18.311Z workers [worker #0, session #580nr] Running tests in sandbox\n',
'2021-12-06T16:30:18.524Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:18.524Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:18.524Z project Test run was cancelled\n',
'2021-12-06T16:30:18.632Z workers Scheduling Jest Test Run (580nr): 2021-12-06T16:30:18.313Z\n',
'2021-12-06T16:30:18.650Z workers Jest Test Run Complete (580nr): 2021-12-06T16:30:18.623Z\n',
'2021-12-06T16:30:18.651Z workers [580nr] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:18.652Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:18.652Z project Test run finished\n',
'2021-12-06T16:30:18.652Z project Test run data re-queued\n',
'2021-12-06T16:30:18.685Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:18.685Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:18.685Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:18.685Z nodeRunner Starting sandbox [worker #0, session #vdj8k]\n',
'2021-12-06T16:30:18.685Z nodeRunner Preparing sandbox [worker #0, session #vdj8k]\n',
'2021-12-06T16:30:18.685Z nodeRunner Prepared sandbox [worker #0, session #vdj8k]\n',
'2021-12-06T16:30:18.685Z workers [worker #0, session #vdj8k] Running tests in sandbox\n',
'2021-12-06T16:30:18.717Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:18.718Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:18.718Z project Test run was cancelled\n',
'2021-12-06T16:30:18.917Z workers Scheduling Jest Test Run (vdj8k): 2021-12-06T16:30:18.687Z\n',
'2021-12-06T16:30:18.925Z workers Jest Test Run Complete (vdj8k): 2021-12-06T16:30:18.915Z\n',
'2021-12-06T16:30:18.926Z workers [vdj8k] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:18.926Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:18.926Z project Test run finished\n',
'2021-12-06T16:30:18.926Z project Test run data re-queued\n',
'2021-12-06T16:30:18.974Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:18.974Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:18.976Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:18.976Z nodeRunner Starting sandbox [worker #0, session #rslvc]\n',
'2021-12-06T16:30:18.976Z nodeRunner Preparing sandbox [worker #0, session #rslvc]\n',
'2021-12-06T16:30:18.976Z nodeRunner Prepared sandbox [worker #0, session #rslvc]\n',
'2021-12-06T16:30:18.976Z workers [worker #0, session #rslvc] Running tests in sandbox\n',
'2021-12-06T16:30:19.203Z workers Scheduling Jest Test Run (rslvc): 2021-12-06T16:30:18.977Z\n',
'2021-12-06T16:30:19.206Z workers Sandbox (active) [rslvc] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:30:19.210Z workers [rslvc] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:30:19.210Z workers Jest Test Run Complete (rslvc): 2021-12-06T16:30:19.198Z\n',
'2021-12-06T16:30:19.212Z workers [rslvc] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:19.213Z project Test run finished\n',
'2021-12-06T16:30:19.213Z project Processed console.log entries\n',
'2021-12-06T16:30:19.213Z project Processed loading sequences\n',
'2021-12-06T16:30:19.213Z project Processed executed tests\n',
'2021-12-06T16:30:19.213Z project Processed code coverage\n',
'2021-12-06T16:30:19.215Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:30:19.647Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:19.649Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:19.649Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:30:21.158Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:21.164Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:21.164Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:21.165Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:21.165Z nodeRunner Starting sandbox [worker #0, session #noqof]\n',
'2021-12-06T16:30:21.165Z nodeRunner Preparing sandbox [worker #0, session #noqof]\n',
'2021-12-06T16:30:21.165Z nodeRunner Prepared sandbox [worker #0, session #noqof]\n',
'2021-12-06T16:30:21.165Z workers [worker #0, session #noqof] Running tests in sandbox\n',
'2021-12-06T16:30:21.507Z workers Scheduling Jest Test Run (noqof): 2021-12-06T16:30:21.167Z\n',
'2021-12-06T16:30:21.512Z workers Sandbox (active) [noqof] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:30:21.517Z workers [noqof] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:30:21.518Z workers Jest Test Run Complete (noqof): 2021-12-06T16:30:21.505Z\n',
'2021-12-06T16:30:21.520Z workers [noqof] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:21.521Z project Test run finished\n',
'2021-12-06T16:30:21.521Z project Processed console.log entries\n',
'2021-12-06T16:30:21.521Z project Processed loading sequences\n',
'2021-12-06T16:30:21.521Z project Processed executed tests\n',
'2021-12-06T16:30:21.522Z project Processed code coverage\n',
'2021-12-06T16:30:21.525Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:30:21.631Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:21.636Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:21.636Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:21.636Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:21.636Z nodeRunner Starting sandbox [worker #0, session #iap22]\n',
'2021-12-06T16:30:21.636Z nodeRunner Preparing sandbox [worker #0, session #iap22]\n',
'2021-12-06T16:30:21.636Z nodeRunner Prepared sandbox [worker #0, session #iap22]\n',
'2021-12-06T16:30:21.636Z workers [worker #0, session #iap22] Running tests in sandbox\n',
'2021-12-06T16:30:21.828Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:21.828Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:21.828Z project Test run was cancelled\n',
'2021-12-06T16:30:21.931Z workers Scheduling Jest Test Run (iap22): 2021-12-06T16:30:21.639Z\n',
'2021-12-06T16:30:21.940Z workers Jest Test Run Complete (iap22): 2021-12-06T16:30:21.926Z\n',
'2021-12-06T16:30:21.940Z workers [iap22] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:21.940Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:21.941Z project Test run finished\n',
'2021-12-06T16:30:21.941Z project Test run data re-queued\n',
'2021-12-06T16:30:21.986Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:21.986Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:21.987Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:21.987Z nodeRunner Starting sandbox [worker #0, session #s47h5]\n',
'2021-12-06T16:30:21.987Z nodeRunner Preparing sandbox [worker #0, session #s47h5]\n',
'2021-12-06T16:30:21.987Z nodeRunner Prepared sandbox [worker #0, session #s47h5]\n',
'2021-12-06T16:30:21.987Z workers [worker #0, session #s47h5] Running tests in sandbox\n',
'2021-12-06T16:30:22.263Z workers Scheduling Jest Test Run (s47h5): 2021-12-06T16:30:21.989Z\n',
'2021-12-06T16:30:22.268Z workers Sandbox (active) [s47h5] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:30:22.271Z workers [s47h5] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:30:22.272Z workers Jest Test Run Complete (s47h5): 2021-12-06T16:30:22.261Z\n',
'2021-12-06T16:30:22.274Z workers [s47h5] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:22.274Z project Test run finished\n',
'2021-12-06T16:30:22.274Z project Processed console.log entries\n',
'2021-12-06T16:30:22.274Z project Processed loading sequences\n',
'2021-12-06T16:30:22.274Z project Processed executed tests\n',
'2021-12-06T16:30:22.275Z project Processed code coverage\n',
'2021-12-06T16:30:22.277Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:30:22.757Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:22.758Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:22.758Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:30:23.901Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:23.907Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:23.907Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:23.907Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:23.907Z nodeRunner Starting sandbox [worker #0, session #77ppg]\n',
'2021-12-06T16:30:23.907Z nodeRunner Preparing sandbox [worker #0, session #77ppg]\n',
'2021-12-06T16:30:23.907Z nodeRunner Prepared sandbox [worker #0, session #77ppg]\n',
'2021-12-06T16:30:23.908Z workers [worker #0, session #77ppg] Running tests in sandbox\n',
'2021-12-06T16:30:24.117Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:24.117Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:24.117Z project Test run was cancelled\n',
'2021-12-06T16:30:24.162Z workers Scheduling Jest Test Run (77ppg): 2021-12-06T16:30:23.910Z\n',
'2021-12-06T16:30:24.168Z workers Jest Test Run Complete (77ppg): 2021-12-06T16:30:24.154Z\n',
'2021-12-06T16:30:24.169Z workers [77ppg] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:24.169Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:24.169Z project Test run finished\n',
'2021-12-06T16:30:24.169Z project Test run data re-queued\n',
'2021-12-06T16:30:24.222Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:24.222Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:24.223Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:24.223Z nodeRunner Starting sandbox [worker #0, session #1tw6v]\n',
'2021-12-06T16:30:24.223Z nodeRunner Preparing sandbox [worker #0, session #1tw6v]\n',
'2021-12-06T16:30:24.223Z nodeRunner Prepared sandbox [worker #0, session #1tw6v]\n',
'2021-12-06T16:30:24.223Z workers [worker #0, session #1tw6v] Running tests in sandbox\n',
'2021-12-06T16:30:24.457Z workers Scheduling Jest Test Run (1tw6v): 2021-12-06T16:30:24.224Z\n',
'2021-12-06T16:30:24.470Z workers Sandbox (active) [1tw6v] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:30:24.475Z workers [1tw6v] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:30:24.476Z workers Jest Test Run Complete (1tw6v): 2021-12-06T16:30:24.455Z\n',
'2021-12-06T16:30:24.478Z workers [1tw6v] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:24.479Z project Test run finished\n',
'2021-12-06T16:30:24.479Z project Processed console.log entries\n',
'2021-12-06T16:30:24.479Z project Processed loading sequences\n',
'2021-12-06T16:30:24.479Z project Processed executed tests\n',
'2021-12-06T16:30:24.482Z project Processed code coverage\n',
'2021-12-06T16:30:24.487Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:30:24.605Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:24.611Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:24.611Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:24.612Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:24.612Z nodeRunner Starting sandbox [worker #0, session #yt87z]\n',
'2021-12-06T16:30:24.612Z nodeRunner Preparing sandbox [worker #0, session #yt87z]\n',
'2021-12-06T16:30:24.612Z nodeRunner Prepared sandbox [worker #0, session #yt87z]\n',
'2021-12-06T16:30:24.612Z workers [worker #0, session #yt87z] Running tests in sandbox\n',
'2021-12-06T16:30:24.705Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:24.706Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:24.706Z project Test run was cancelled\n',
'2021-12-06T16:30:24.817Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:24.818Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:24.818Z project Test run was cancelled\n',
'2021-12-06T16:30:25.006Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:25.006Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:25.006Z project Test run was cancelled\n',
'2021-12-06T16:30:25.006Z workers Scheduling Jest Test Run (yt87z): 2021-12-06T16:30:24.618Z\n',
'2021-12-06T16:30:25.012Z workers Jest Test Run Complete (yt87z): 2021-12-06T16:30:24.997Z\n',
'2021-12-06T16:30:25.012Z workers [yt87z] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:25.013Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:25.013Z project Test run finished\n',
'2021-12-06T16:30:25.013Z project Test run data re-queued\n',
'2021-12-06T16:30:25.069Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:25.069Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:25.069Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:25.069Z nodeRunner Starting sandbox [worker #0, session #vuc8b]\n',
'2021-12-06T16:30:25.069Z nodeRunner Preparing sandbox [worker #0, session #vuc8b]\n',
'2021-12-06T16:30:25.069Z nodeRunner Prepared sandbox [worker #0, session #vuc8b]\n',
'2021-12-06T16:30:25.069Z workers [worker #0, session #vuc8b] Running tests in sandbox\n',
'2021-12-06T16:30:25.137Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:25.137Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:25.137Z project Test run was cancelled\n',
'2021-12-06T16:30:25.324Z workers Scheduling Jest Test Run (vuc8b): 2021-12-06T16:30:25.071Z\n',
'2021-12-06T16:30:25.331Z workers Jest Test Run Complete (vuc8b): 2021-12-06T16:30:25.322Z\n',
'2021-12-06T16:30:25.332Z workers [vuc8b] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:25.332Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:25.332Z project Test run finished\n',
'2021-12-06T16:30:25.332Z project Test run data re-queued\n',
'2021-12-06T16:30:25.344Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:25.345Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:25.345Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:25.345Z nodeRunner Starting sandbox [worker #0, session #ygxyd]\n',
'2021-12-06T16:30:25.345Z nodeRunner Preparing sandbox [worker #0, session #ygxyd]\n',
'2021-12-06T16:30:25.345Z nodeRunner Prepared sandbox [worker #0, session #ygxyd]\n',
'2021-12-06T16:30:25.345Z workers [worker #0, session #ygxyd] Running tests in sandbox\n',
'2021-12-06T16:30:25.639Z workers Scheduling Jest Test Run (ygxyd): 2021-12-06T16:30:25.348Z\n',
'2021-12-06T16:30:25.643Z workers Sandbox (active) [ygxyd] error: async is not defined\n',
'2021-12-06T16:30:25.651Z workers [ygxyd] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:30:25.652Z workers Jest Test Run Complete (ygxyd): 2021-12-06T16:30:25.630Z\n',
'2021-12-06T16:30:25.652Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:25.653Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:25.653Z project Test run was cancelled\n',
'2021-12-06T16:30:25.654Z workers [ygxyd] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:25.654Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:25.654Z project Test run finished\n',
'2021-12-06T16:30:25.654Z project Test run data re-queued\n',
'2021-12-06T16:30:25.706Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:25.706Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:25.707Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:25.707Z nodeRunner Starting sandbox [worker #0, session #rupwu]\n',
'2021-12-06T16:30:25.707Z nodeRunner Preparing sandbox [worker #0, session #rupwu]\n',
'2021-12-06T16:30:25.707Z nodeRunner Prepared sandbox [worker #0, session #rupwu]\n',
'2021-12-06T16:30:25.707Z workers [worker #0, session #rupwu] Running tests in sandbox\n',
'2021-12-06T16:30:25.962Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:25.963Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:25.963Z project Test run was cancelled\n',
'2021-12-06T16:30:26.023Z workers Scheduling Jest Test Run (rupwu): 2021-12-06T16:30:25.709Z\n',
'2021-12-06T16:30:26.030Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:26.030Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:26.032Z workers Jest Test Run Complete (rupwu): 2021-12-06T16:30:26.022Z\n',
'2021-12-06T16:30:26.033Z workers [rupwu] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:26.033Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:26.033Z project Test run finished\n',
'2021-12-06T16:30:26.033Z project Test run data re-queued\n',
'2021-12-06T16:30:26.071Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:26.071Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:26.071Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:26.072Z nodeRunner Starting sandbox [worker #0, session #1l3ul]\n',
'2021-12-06T16:30:26.072Z nodeRunner Preparing sandbox [worker #0, session #1l3ul]\n',
'2021-12-06T16:30:26.072Z nodeRunner Prepared sandbox [worker #0, session #1l3ul]\n',
'2021-12-06T16:30:26.072Z workers [worker #0, session #1l3ul] Running tests in sandbox\n',
'2021-12-06T16:30:26.254Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:26.254Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:26.254Z project Test run was cancelled\n',
'2021-12-06T16:30:26.393Z workers Scheduling Jest Test Run (1l3ul): 2021-12-06T16:30:26.074Z\n',
'2021-12-06T16:30:26.400Z workers Jest Test Run Complete (1l3ul): 2021-12-06T16:30:26.387Z\n',
'2021-12-06T16:30:26.400Z workers [1l3ul] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:26.401Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:26.401Z project Test run finished\n',
'2021-12-06T16:30:26.401Z project Test run data re-queued\n',
'2021-12-06T16:30:26.409Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:26.409Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:26.410Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:26.410Z nodeRunner Starting sandbox [worker #0, session #akpr1]\n',
'2021-12-06T16:30:26.410Z nodeRunner Preparing sandbox [worker #0, session #akpr1]\n',
'2021-12-06T16:30:26.410Z nodeRunner Prepared sandbox [worker #0, session #akpr1]\n',
'2021-12-06T16:30:26.410Z workers [worker #0, session #akpr1] Running tests in sandbox\n',
'2021-12-06T16:30:26.557Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:26.558Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:26.558Z project Test run was cancelled\n',
'2021-12-06T16:30:26.702Z workers Scheduling Jest Test Run (akpr1): 2021-12-06T16:30:26.412Z\n',
'2021-12-06T16:30:26.709Z workers Jest Test Run Complete (akpr1): 2021-12-06T16:30:26.700Z\n',
'2021-12-06T16:30:26.709Z workers [akpr1] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:26.709Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:26.710Z project Test run finished\n',
'2021-12-06T16:30:26.710Z project Test run data re-queued\n',
'2021-12-06T16:30:26.722Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:26.722Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:26.722Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:26.723Z nodeRunner Starting sandbox [worker #0, session #xvuxr]\n',
'2021-12-06T16:30:26.723Z nodeRunner Preparing sandbox [worker #0, session #xvuxr]\n',
'2021-12-06T16:30:26.723Z nodeRunner Prepared sandbox [worker #0, session #xvuxr]\n',
'2021-12-06T16:30:26.723Z workers [worker #0, session #xvuxr] Running tests in sandbox\n',
'2021-12-06T16:30:26.944Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:26.946Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:26.946Z project Test run was cancelled\n',
'2021-12-06T16:30:26.953Z workers Scheduling Jest Test Run (xvuxr): 2021-12-06T16:30:26.724Z\n',
'2021-12-06T16:30:26.963Z workers Jest Test Run Complete (xvuxr): 2021-12-06T16:30:26.941Z\n',
'2021-12-06T16:30:26.964Z workers [xvuxr] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:26.964Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:26.964Z project Test run finished\n',
'2021-12-06T16:30:26.964Z project Test run data re-queued\n',
'2021-12-06T16:30:27.001Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:27.001Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:27.002Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:27.002Z nodeRunner Starting sandbox [worker #0, session #fk7ib]\n',
'2021-12-06T16:30:27.002Z nodeRunner Preparing sandbox [worker #0, session #fk7ib]\n',
'2021-12-06T16:30:27.002Z nodeRunner Prepared sandbox [worker #0, session #fk7ib]\n',
'2021-12-06T16:30:27.002Z workers [worker #0, session #fk7ib] Running tests in sandbox\n',
'2021-12-06T16:30:27.174Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:27.174Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:27.174Z project Test run was cancelled\n',
'2021-12-06T16:30:27.289Z workers Scheduling Jest Test Run (fk7ib): 2021-12-06T16:30:27.004Z\n',
'2021-12-06T16:30:27.312Z workers [fk7ib] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:27.313Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:27.313Z project Test run finished\n',
'2021-12-06T16:30:27.313Z project Test run data re-queued\n',
'2021-12-06T16:30:27.330Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:27.330Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:27.331Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:27.331Z nodeRunner Starting sandbox [worker #0, session #5nizl]\n',
'2021-12-06T16:30:27.331Z nodeRunner Preparing sandbox [worker #0, session #5nizl]\n',
'2021-12-06T16:30:27.331Z nodeRunner Prepared sandbox [worker #0, session #5nizl]\n',
'2021-12-06T16:30:27.331Z workers [worker #0, session #5nizl] Running tests in sandbox\n',
'2021-12-06T16:30:27.650Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:27.650Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:27.650Z project Test run was cancelled\n',
'2021-12-06T16:30:27.706Z workers Scheduling Jest Test Run (5nizl): 2021-12-06T16:30:27.347Z\n',
'2021-12-06T16:30:27.722Z workers [5nizl] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:27.722Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:27.722Z project Test run finished\n',
'2021-12-06T16:30:27.722Z project Test run data re-queued\n',
'2021-12-06T16:30:27.760Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:27.760Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:27.760Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:27.760Z nodeRunner Starting sandbox [worker #0, session #evvrk]\n',
'2021-12-06T16:30:27.761Z nodeRunner Preparing sandbox [worker #0, session #evvrk]\n',
'2021-12-06T16:30:27.761Z nodeRunner Prepared sandbox [worker #0, session #evvrk]\n',
'2021-12-06T16:30:27.761Z workers [worker #0, session #evvrk] Running tests in sandbox\n',
'2021-12-06T16:30:28.073Z workers Scheduling Jest Test Run (evvrk): 2021-12-06T16:30:27.768Z\n',
'2021-12-06T16:30:28.161Z workers [evvrk] Loaded unknown number of test(s)\n',
'2021-12-06T16:30:28.351Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:28.352Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:28.352Z project Test run was cancelled\n',
'2021-12-06T16:30:28.383Z workers [evvrk] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:28.383Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:28.383Z project Test run finished\n',
'2021-12-06T16:30:28.383Z project Test run data re-queued\n',
'2021-12-06T16:30:28.408Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:28.408Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:28.408Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:28.408Z nodeRunner Starting sandbox [worker #0, session #32cmi]\n',
'2021-12-06T16:30:28.408Z nodeRunner Preparing sandbox [worker #0, session #32cmi]\n',
'2021-12-06T16:30:28.408Z nodeRunner Prepared sandbox [worker #0, session #32cmi]\n',
'2021-12-06T16:30:28.409Z workers [worker #0, session #32cmi] Running tests in sandbox\n',
'2021-12-06T16:30:28.802Z workers Scheduling Jest Test Run (32cmi): 2021-12-06T16:30:28.411Z\n',
'2021-12-06T16:30:28.824Z workers [32cmi] Loaded unknown number of test(s)\n',
'2021-12-06T16:30:29.277Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:29.279Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:29.280Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:30:31.684Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:31.685Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:31.686Z project Test run was cancelled\n',
'2021-12-06T16:30:31.689Z workers [32cmi] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:31.690Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:31.690Z project Test run finished\n',
'2021-12-06T16:30:31.690Z project Test run data re-queued\n',
'2021-12-06T16:30:31.743Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:31.743Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:31.743Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:31.743Z nodeRunner Starting sandbox [worker #0, session #83a25]\n',
'2021-12-06T16:30:31.743Z nodeRunner Preparing sandbox [worker #0, session #83a25]\n',
'2021-12-06T16:30:31.744Z nodeRunner Prepared sandbox [worker #0, session #83a25]\n',
'2021-12-06T16:30:31.744Z workers [worker #0, session #83a25] Running tests in sandbox\n',
'2021-12-06T16:30:32.582Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:32.585Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:32.585Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:30:32.829Z workers Scheduling Jest Test Run (83a25): 2021-12-06T16:30:31.745Z\n',
'2021-12-06T16:30:32.857Z workers [83a25] Loaded unknown number of test(s)\n',
'2021-12-06T16:30:33.689Z workers [83a25] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:30:33.690Z workers Jest Test Run Complete (fk7ib): 2021-12-06T16:30:33.648Z\n',
'2021-12-06T16:30:33.692Z workers Jest Test Run Complete (5nizl): 2021-12-06T16:30:33.684Z\n',
'2021-12-06T16:30:33.693Z workers [83a25] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:33.693Z project Test run finished\n',
'2021-12-06T16:30:33.694Z project Processed console.log entries\n',
'2021-12-06T16:30:33.694Z project Processed loading sequences\n',
'2021-12-06T16:30:33.694Z project Processed executed tests\n',
'2021-12-06T16:30:33.697Z project Processed code coverage\n',
'2021-12-06T16:30:33.706Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:30:34.578Z workers Sandbox (inactive) [83a25] error: process.exit called with 1\n',
'2021-12-06T16:30:34.582Z workers Sandbox (inactive) [83a25] error: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLo'... 23291 more characters,
'2021-12-06T16:30:34.582Z workers Jest cache corrupted: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLocalRoot),j=e'... 23689 more characters,
'2021-12-06T16:30:35.331Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:35.336Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:35.336Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:35.337Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:35.337Z nodeRunner Starting sandbox [worker #0, session #55sec]\n',
'2021-12-06T16:30:35.337Z nodeRunner Preparing sandbox [worker #0, session #55sec]\n',
'2021-12-06T16:30:35.337Z nodeRunner Prepared sandbox [worker #0, session #55sec]\n',
'2021-12-06T16:30:35.337Z workers [worker #0, session #55sec] Running tests in sandbox\n',
'2021-12-06T16:30:35.342Z project Test run finished\n',
'2021-12-06T16:30:36.291Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:36.292Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:36.292Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:30:37.945Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:37.945Z workers [55sec] Sandbox can not be pinged: not opened\n',
'2021-12-06T16:30:37.945Z workers [55sec] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:30:37.945Z workers [55sec] Sandbox closing error, not opened\n',
'2021-12-06T16:30:37.946Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:37.946Z project Test run was cancelled\n',
'2021-12-06T16:30:37.950Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:37.950Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:37.951Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:37.951Z nodeRunner Starting sandbox [worker #0, session #k1y6q]\n',
'2021-12-06T16:30:37.952Z nodeRunner Preparing sandbox [worker #0, session #k1y6q]\n',
'2021-12-06T16:30:37.952Z workers Starting run worker instance #0\n',
'2021-12-06T16:30:38.078Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:38.104Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:30:38.104Z nodeRunner Prepared sandbox [worker #0, session #k1y6q]\n',
'2021-12-06T16:30:38.104Z workers [worker #0, session #k1y6q] Running tests in sandbox\n',
'2021-12-06T16:30:38.486Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:38.487Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:38.487Z project Test run was cancelled\n',
'2021-12-06T16:30:38.769Z workers [k1y6q] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:38.769Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:38.769Z project Test run finished\n',
'2021-12-06T16:30:38.769Z project Test run data re-queued\n',
'2021-12-06T16:30:38.803Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:38.803Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:38.804Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:38.804Z nodeRunner Starting sandbox [worker #0, session #sfrkx]\n',
'2021-12-06T16:30:38.804Z nodeRunner Preparing sandbox [worker #0, session #sfrkx]\n',
'2021-12-06T16:30:38.805Z nodeRunner Prepared sandbox [worker #0, session #sfrkx]\n',
'2021-12-06T16:30:38.805Z workers [worker #0, session #sfrkx] Running tests in sandbox\n',
'2021-12-06T16:30:38.808Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:38.808Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:38.809Z project Test run was cancelled\n',
'2021-12-06T16:30:38.849Z workers [sfrkx] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:38.850Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:38.850Z project Test run finished\n',
'2021-12-06T16:30:38.850Z project Test run data re-queued\n',
'2021-12-06T16:30:38.864Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:38.865Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:38.865Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:38.865Z nodeRunner Starting sandbox [worker #0, session #xdahh]\n',
'2021-12-06T16:30:38.866Z nodeRunner Preparing sandbox [worker #0, session #xdahh]\n',
'2021-12-06T16:30:38.866Z nodeRunner Prepared sandbox [worker #0, session #xdahh]\n',
'2021-12-06T16:30:38.866Z workers [worker #0, session #xdahh] Running tests in sandbox\n',
'2021-12-06T16:30:39.131Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:39.131Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:39.131Z project Test run was cancelled\n',
'2021-12-06T16:30:39.601Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:39.601Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:39.601Z project Test run was cancelled\n',
'2021-12-06T16:30:39.939Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:39.940Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:39.940Z project Test run was cancelled\n',
'2021-12-06T16:30:40.173Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:40.173Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:40.173Z project Test run was cancelled\n',
'2021-12-06T16:30:40.439Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:40.440Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:40.440Z project Test run was cancelled\n',
'2021-12-06T16:30:40.823Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:40.824Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:40.824Z project Test run was cancelled\n',
'2021-12-06T16:30:41.018Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:41.019Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:41.019Z project Test run was cancelled\n',
'2021-12-06T16:30:41.448Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:41.448Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:41.448Z project Test run was cancelled\n',
'2021-12-06T16:30:41.554Z workers Sandbox (inactive) [xdahh] error: process.exit called with 1\n',
'2021-12-06T16:30:41.556Z workers Sandbox (inactive) [xdahh] error: node:internal/errors:464\n ErrorCaptureStackTrace(err);\n ^\n\nError [ERR_SERVER_NOT_RUNNING]: Server is not running.\n',
'2021-12-06T16:30:41.586Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:41.586Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:41.586Z project Test run was cancelled\n',
'2021-12-06T16:30:42.051Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:42.052Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:42.052Z project Test run was cancelled\n',
'2021-12-06T16:30:42.341Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:42.341Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:42.341Z project Test run was cancelled\n',
'2021-12-06T16:30:42.521Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:42.521Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:42.521Z project Test run was cancelled\n',
'2021-12-06T16:30:42.761Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:42.761Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:42.761Z project Test run was cancelled\n',
'2021-12-06T16:30:43.053Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:43.053Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:43.053Z project Test run was cancelled\n',
'2021-12-06T16:30:43.339Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:43.340Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:43.340Z project Test run was cancelled\n',
'2021-12-06T16:30:43.568Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:43.568Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:43.568Z project Test run was cancelled\n',
'2021-12-06T16:30:43.710Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:43.711Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:43.711Z project Test run was cancelled\n',
'2021-12-06T16:30:43.953Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:43.953Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:44.241Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:44.241Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:44.678Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:44.679Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:45.573Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:45.573Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:45.573Z project Test run was cancelled\n',
'2021-12-06T16:30:46.131Z workers [xdahh] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:30:46.131Z workers [xdahh] Sandbox closing error, not opened\n',
'2021-12-06T16:30:46.132Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:46.132Z project Test run finished\n',
'2021-12-06T16:30:46.132Z project Test run data re-queued\n',
'2021-12-06T16:30:46.133Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:46.141Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:46.141Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:46.141Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:46.142Z nodeRunner Starting sandbox [worker #0, session #ofoyk]\n',
'2021-12-06T16:30:46.142Z nodeRunner Preparing sandbox [worker #0, session #ofoyk]\n',
'2021-12-06T16:30:46.142Z workers Starting run worker instance #0\n',
'2021-12-06T16:30:46.269Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:30:46.269Z nodeRunner Prepared sandbox [worker #0, session #ofoyk]\n',
'2021-12-06T16:30:46.269Z workers [worker #0, session #ofoyk] Running tests in sandbox\n',
'2021-12-06T16:30:47.007Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:47.008Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:47.009Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:30:47.454Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:47.454Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:47.454Z project Test run was cancelled\n',
'2021-12-06T16:30:47.961Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:47.961Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:47.961Z project Test run was cancelled\n',
'2021-12-06T16:30:48.282Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:48.283Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:48.283Z project Test run was cancelled\n',
'2021-12-06T16:30:48.567Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:48.568Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:48.568Z project Test run was cancelled\n',
'2021-12-06T16:30:48.809Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:48.809Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:48.809Z project Test run was cancelled\n',
'2021-12-06T16:30:49.167Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:49.167Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:49.167Z project Test run was cancelled\n',
'2021-12-06T16:30:49.260Z workers Scheduling Jest Test Run (ofoyk): 2021-12-06T16:30:46.837Z\n',
'2021-12-06T16:30:49.278Z workers [ofoyk] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:49.278Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:49.278Z project Test run finished\n',
'2021-12-06T16:30:49.278Z project Test run data re-queued\n',
'2021-12-06T16:30:49.329Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:49.329Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:49.330Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:49.330Z nodeRunner Starting sandbox [worker #0, session #ehzbn]\n',
'2021-12-06T16:30:49.330Z nodeRunner Preparing sandbox [worker #0, session #ehzbn]\n',
'2021-12-06T16:30:49.330Z nodeRunner Prepared sandbox [worker #0, session #ehzbn]\n',
'2021-12-06T16:30:49.330Z workers [worker #0, session #ehzbn] Running tests in sandbox\n',
'2021-12-06T16:30:49.480Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:49.482Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:49.482Z project Test run was cancelled\n',
'2021-12-06T16:30:49.660Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:49.660Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:49.660Z project Test run was cancelled\n',
'2021-12-06T16:30:49.891Z workers Scheduling Jest Test Run (ehzbn): 2021-12-06T16:30:49.333Z\n',
'2021-12-06T16:30:49.911Z workers [ehzbn] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:49.911Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:49.911Z project Test run finished\n',
'2021-12-06T16:30:49.911Z project Test run data re-queued\n',
'2021-12-06T16:30:49.918Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:49.918Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:49.919Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:49.919Z nodeRunner Starting sandbox [worker #0, session #bv1zi]\n',
'2021-12-06T16:30:49.919Z nodeRunner Preparing sandbox [worker #0, session #bv1zi]\n',
'2021-12-06T16:30:49.919Z nodeRunner Prepared sandbox [worker #0, session #bv1zi]\n',
'2021-12-06T16:30:49.919Z workers [worker #0, session #bv1zi] Running tests in sandbox\n',
'2021-12-06T16:30:50.144Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:50.144Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:50.320Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:50.320Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:50.487Z workers Scheduling Jest Test Run (bv1zi): 2021-12-06T16:30:49.929Z\n',
'2021-12-06T16:30:50.505Z workers [bv1zi] Loaded unknown number of test(s)\n',
'2021-12-06T16:30:50.724Z workers [bv1zi] Test executed: will compile a valid script\n',
'2021-12-06T16:30:51.120Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:51.121Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:51.121Z project Test run was cancelled\n',
'2021-12-06T16:30:51.132Z workers [bv1zi] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:51.133Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:51.133Z project Test run finished\n',
'2021-12-06T16:30:51.133Z project Test run data re-queued\n',
'2021-12-06T16:30:51.177Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:51.177Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:51.177Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:51.178Z nodeRunner Starting sandbox [worker #0, session #00ss4]\n',
'2021-12-06T16:30:51.178Z nodeRunner Preparing sandbox [worker #0, session #00ss4]\n',
'2021-12-06T16:30:51.178Z nodeRunner Prepared sandbox [worker #0, session #00ss4]\n',
'2021-12-06T16:30:51.178Z workers [worker #0, session #00ss4] Running tests in sandbox\n',
'2021-12-06T16:30:51.539Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:51.540Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:51.540Z project Test run was cancelled\n',
'2021-12-06T16:30:51.675Z workers Scheduling Jest Test Run (00ss4): 2021-12-06T16:30:51.181Z\n',
'2021-12-06T16:30:51.823Z workers Jest Test Run Complete (ofoyk): 2021-12-06T16:30:51.758Z\n',
'2021-12-06T16:30:51.824Z workers [00ss4] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:51.824Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:51.824Z project Test run finished\n',
'2021-12-06T16:30:51.824Z project Test run data re-queued\n',
'2021-12-06T16:30:51.835Z workers Jest Test Run Complete (00ss4): 2021-12-06T16:30:51.778Z\n',
'2021-12-06T16:30:51.849Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:51.850Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:51.850Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:51.850Z nodeRunner Starting sandbox [worker #0, session #mehzt]\n',
'2021-12-06T16:30:51.852Z nodeRunner Preparing sandbox [worker #0, session #mehzt]\n',
'2021-12-06T16:30:51.853Z nodeRunner Prepared sandbox [worker #0, session #mehzt]\n',
'2021-12-06T16:30:51.853Z workers [worker #0, session #mehzt] Running tests in sandbox\n',
'2021-12-06T16:30:51.864Z workers Jest Test Run Complete (bv1zi): 2021-12-06T16:30:51.792Z\n',
'2021-12-06T16:30:52.138Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:52.139Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:52.139Z project Test run was cancelled\n',
'2021-12-06T16:30:52.283Z workers Scheduling Jest Test Run (mehzt): 2021-12-06T16:30:51.866Z\n',
'2021-12-06T16:30:52.377Z workers Jest Test Run Complete (mehzt): 2021-12-06T16:30:52.265Z\n',
'2021-12-06T16:30:52.378Z workers [mehzt] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:52.378Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:52.378Z project Test run finished\n',
'2021-12-06T16:30:52.379Z project Test run data re-queued\n',
'2021-12-06T16:30:52.381Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:52.386Z workers Jest Test Run Complete (ehzbn): 2021-12-06T16:30:52.369Z\n',
'2021-12-06T16:30:52.389Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:52.390Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:52.390Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:52.390Z nodeRunner Starting sandbox [worker #0, session #94vjj]\n',
'2021-12-06T16:30:52.390Z nodeRunner Preparing sandbox [worker #0, session #94vjj]\n',
'2021-12-06T16:30:52.390Z nodeRunner Prepared sandbox [worker #0, session #94vjj]\n',
'2021-12-06T16:30:52.391Z workers [worker #0, session #94vjj] Running tests in sandbox\n',
'2021-12-06T16:30:52.562Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:52.563Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:52.563Z project Test run was cancelled\n',
'2021-12-06T16:30:52.794Z workers Scheduling Jest Test Run (94vjj): 2021-12-06T16:30:52.393Z\n',
'2021-12-06T16:30:52.810Z workers [94vjj] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:52.810Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:52.811Z project Test run finished\n',
'2021-12-06T16:30:52.811Z project Test run data re-queued\n',
'2021-12-06T16:30:52.825Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:52.825Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:52.825Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:52.825Z nodeRunner Starting sandbox [worker #0, session #ivm7j]\n',
'2021-12-06T16:30:52.827Z nodeRunner Preparing sandbox [worker #0, session #ivm7j]\n',
'2021-12-06T16:30:52.827Z nodeRunner Prepared sandbox [worker #0, session #ivm7j]\n',
'2021-12-06T16:30:52.827Z workers [worker #0, session #ivm7j] Running tests in sandbox\n',
'2021-12-06T16:30:53.058Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:53.058Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:53.058Z project Test run was cancelled\n',
'2021-12-06T16:30:53.280Z workers Scheduling Jest Test Run (ivm7j): 2021-12-06T16:30:52.832Z\n',
'2021-12-06T16:30:53.298Z workers [ivm7j] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:53.298Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:53.298Z project Test run finished\n',
'2021-12-06T16:30:53.298Z project Test run data re-queued\n',
'2021-12-06T16:30:53.304Z workers Jest Test Run Complete (ivm7j): 2021-12-06T16:30:53.293Z\n',
'2021-12-06T16:30:53.316Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:53.316Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:53.316Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:53.316Z nodeRunner Starting sandbox [worker #0, session #6td3k]\n',
'2021-12-06T16:30:53.316Z nodeRunner Preparing sandbox [worker #0, session #6td3k]\n',
'2021-12-06T16:30:53.316Z nodeRunner Prepared sandbox [worker #0, session #6td3k]\n',
'2021-12-06T16:30:53.316Z workers [worker #0, session #6td3k] Running tests in sandbox\n',
'2021-12-06T16:30:53.526Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:53.527Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:53.527Z project Test run was cancelled\n',
'2021-12-06T16:30:53.735Z workers Scheduling Jest Test Run (6td3k): 2021-12-06T16:30:53.319Z\n',
'2021-12-06T16:30:53.761Z workers [6td3k] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:53.761Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:53.761Z project Test run finished\n',
'2021-12-06T16:30:53.762Z project Test run data re-queued\n',
'2021-12-06T16:30:53.767Z workers Jest Test Run Complete (6td3k): 2021-12-06T16:30:53.759Z\n',
'2021-12-06T16:30:53.788Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:53.788Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:53.789Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:53.789Z nodeRunner Starting sandbox [worker #0, session #cetdf]\n',
'2021-12-06T16:30:53.789Z nodeRunner Preparing sandbox [worker #0, session #cetdf]\n',
'2021-12-06T16:30:53.789Z nodeRunner Prepared sandbox [worker #0, session #cetdf]\n',
'2021-12-06T16:30:53.790Z workers [worker #0, session #cetdf] Running tests in sandbox\n',
'2021-12-06T16:30:53.801Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:53.802Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:53.802Z project Test run was cancelled\n',
'2021-12-06T16:30:53.902Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:53.903Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:53.903Z project Test run was cancelled\n',
'2021-12-06T16:30:54.155Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:54.156Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:54.156Z project Test run was cancelled\n',
'2021-12-06T16:30:54.381Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:54.382Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:54.382Z project Test run was cancelled\n',
'2021-12-06T16:30:54.429Z workers Scheduling Jest Test Run (cetdf): 2021-12-06T16:30:53.795Z\n',
'2021-12-06T16:30:54.539Z workers Jest Test Run Complete (94vjj): 2021-12-06T16:30:54.507Z\n',
'2021-12-06T16:30:54.539Z workers [cetdf] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:54.540Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:54.540Z project Test run finished\n',
'2021-12-06T16:30:54.540Z project Test run data re-queued\n',
'2021-12-06T16:30:54.541Z workers Jest Test Run Complete (cetdf): 2021-12-06T16:30:54.531Z\n',
'2021-12-06T16:30:54.590Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:54.590Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:54.590Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:54.590Z nodeRunner Starting sandbox [worker #0, session #as96u]\n',
'2021-12-06T16:30:54.591Z nodeRunner Preparing sandbox [worker #0, session #as96u]\n',
'2021-12-06T16:30:54.591Z nodeRunner Prepared sandbox [worker #0, session #as96u]\n',
'2021-12-06T16:30:54.591Z workers [worker #0, session #as96u] Running tests in sandbox\n',
'2021-12-06T16:30:54.715Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:54.716Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:54.716Z project Test run was cancelled\n',
'2021-12-06T16:30:55.080Z workers Scheduling Jest Test Run (as96u): 2021-12-06T16:30:54.593Z\n',
'2021-12-06T16:30:55.122Z workers [as96u] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:55.123Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:55.123Z project Test run finished\n',
'2021-12-06T16:30:55.123Z project Test run data re-queued\n',
'2021-12-06T16:30:55.138Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:55.139Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:55.139Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:55.139Z nodeRunner Starting sandbox [worker #0, session #w5u93]\n',
'2021-12-06T16:30:55.139Z nodeRunner Preparing sandbox [worker #0, session #w5u93]\n',
'2021-12-06T16:30:55.139Z nodeRunner Prepared sandbox [worker #0, session #w5u93]\n',
'2021-12-06T16:30:55.139Z workers [worker #0, session #w5u93] Running tests in sandbox\n',
'2021-12-06T16:30:55.355Z workers Scheduling Jest Test Run (w5u93): 2021-12-06T16:30:55.141Z\n',
'2021-12-06T16:30:55.358Z workers Sandbox (active) [w5u93] error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 67 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n' +
" 68 | .post('/build')\n" +
'> 69 | .send({ script: });\n' +
' | ^ SyntaxError: Unexpected token (69:29)\n' +
' 70 | }));\n' +
' 71 | it("will respond with a page on root", () => __awaiter(void 0, void 0, void 0, function* () {\n' +
' 72 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n',
'2021-12-06T16:30:55.364Z workers [w5u93] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:30:55.365Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:55.366Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:55.366Z project Test run was cancelled\n',
'2021-12-06T16:30:55.367Z workers Jest Test Run Complete (w5u93): 2021-12-06T16:30:55.352Z\n',
'2021-12-06T16:30:55.370Z workers [w5u93] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:55.370Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:55.370Z project Test run finished\n',
'2021-12-06T16:30:55.371Z project Test run data re-queued\n',
'2021-12-06T16:30:55.428Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:55.428Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:55.429Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:55.429Z nodeRunner Starting sandbox [worker #0, session #95v4g]\n',
'2021-12-06T16:30:55.429Z nodeRunner Preparing sandbox [worker #0, session #95v4g]\n',
'2021-12-06T16:30:55.429Z nodeRunner Prepared sandbox [worker #0, session #95v4g]\n',
'2021-12-06T16:30:55.429Z workers [worker #0, session #95v4g] Running tests in sandbox\n',
'2021-12-06T16:30:55.630Z workers Scheduling Jest Test Run (95v4g): 2021-12-06T16:30:55.431Z\n',
'2021-12-06T16:30:55.634Z workers Sandbox (active) [95v4g] error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 67 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n' +
" 68 | .post('/build')\n" +
'> 69 | .send({ script: });\n' +
' | ^ SyntaxError: Unexpected token (69:29)\n' +
' 70 | }));\n' +
' 71 | it("will respond with a page on root", () => __awaiter(void 0, void 0, void 0, function* () {\n' +
' 72 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n',
'2021-12-06T16:30:55.641Z workers [95v4g] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:30:55.641Z workers Jest Test Run Complete (95v4g): 2021-12-06T16:30:55.628Z\n',
'2021-12-06T16:30:55.644Z workers [95v4g] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:55.644Z workers Failed to map the stack to user code, entry message: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 67 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n' +
" 68 | .post('/build')\n" +
'> 69 | .send({ script: });\n' +
' | ^ SyntaxError: Unexpected token (69:29)\n' +
' 70 | }));\n' +
' 71 | it("will respond with a page on root", () => __awaiter(void 0, void 0, void 0, function* () {\n' +
' 72 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`), stack: Error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 67 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n' +
" 68 | .post('/build')\n" +
'> 69 | .send({ script: });\n' +
' | ^ SyntaxError: Unexpected token (69:29)\n' +
' 70 | }));\n' +
' 71 | it("will respond with a page on root", () => __awaiter(void 0, void 0, void 0, function* () {\n' +
' 72 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n' +
' at Object.formatInstrumentationError (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:29:31736)\n' +
' at s (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/runners/node/jest@24.8.0/initializer.js:15:1423)\n' +
' at TsJestTransformer.e.process (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/runners/node/jest@24.8.0/initializer.js:15:3031)\n' +
' at ScriptTransformer.transformSource (<rootDir>/node_modules/@jest/transfor\n',
'2021-12-06T16:30:55.645Z project Test run finished\n',
'2021-12-06T16:30:55.645Z project Processed console.log entries\n',
'2021-12-06T16:30:55.645Z project Processed loading sequences\n',
'2021-12-06T16:30:55.645Z project Processed executed tests\n',
'2021-12-06T16:30:55.645Z project Processed code coverage\n',
'2021-12-06T16:30:55.649Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:30:56.189Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:56.195Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:56.196Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:56.196Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:56.196Z nodeRunner Starting sandbox [worker #0, session #cddcs]\n',
'2021-12-06T16:30:56.196Z nodeRunner Preparing sandbox [worker #0, session #cddcs]\n',
'2021-12-06T16:30:56.196Z nodeRunner Prepared sandbox [worker #0, session #cddcs]\n',
'2021-12-06T16:30:56.197Z workers [worker #0, session #cddcs] Running tests in sandbox\n',
'2021-12-06T16:30:56.599Z workers Scheduling Jest Test Run (cddcs): 2021-12-06T16:30:56.199Z\n',
'2021-12-06T16:30:56.652Z workers [cddcs] Loaded unknown number of test(s)\n',
'2021-12-06T16:30:57.124Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:57.127Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:57.127Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:30:57.474Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:57.475Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:57.475Z project Test run was cancelled\n',
'2021-12-06T16:30:57.480Z workers [cddcs] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:57.480Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:57.480Z project Test run finished\n',
'2021-12-06T16:30:57.480Z project Test run data re-queued\n',
'2021-12-06T16:30:57.543Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:57.543Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:57.543Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:57.543Z nodeRunner Starting sandbox [worker #0, session #r8ur7]\n',
'2021-12-06T16:30:57.543Z nodeRunner Preparing sandbox [worker #0, session #r8ur7]\n',
'2021-12-06T16:30:57.543Z nodeRunner Prepared sandbox [worker #0, session #r8ur7]\n',
'2021-12-06T16:30:57.543Z workers [worker #0, session #r8ur7] Running tests in sandbox\n',
'2021-12-06T16:30:57.629Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:57.629Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:57.629Z project Test run was cancelled\n',
'2021-12-06T16:30:57.918Z workers Scheduling Jest Test Run (r8ur7): 2021-12-06T16:30:57.550Z\n',
'2021-12-06T16:30:57.975Z workers [r8ur7] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:57.975Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:57.975Z project Test run finished\n',
'2021-12-06T16:30:57.975Z project Test run data re-queued\n',
'2021-12-06T16:30:57.987Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:57.987Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:57.987Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:57.987Z nodeRunner Starting sandbox [worker #0, session #mlwwu]\n',
'2021-12-06T16:30:57.987Z nodeRunner Preparing sandbox [worker #0, session #mlwwu]\n',
'2021-12-06T16:30:57.987Z nodeRunner Prepared sandbox [worker #0, session #mlwwu]\n',
'2021-12-06T16:30:57.988Z workers [worker #0, session #mlwwu] Running tests in sandbox\n',
'2021-12-06T16:30:58.406Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:58.407Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:58.407Z project Test run was cancelled\n',
'2021-12-06T16:30:58.566Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:58.566Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:58.566Z project Test run was cancelled\n',
'2021-12-06T16:30:58.737Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:58.739Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:58.739Z project Test run was cancelled\n',
'2021-12-06T16:30:58.910Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:58.911Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:58.911Z project Test run was cancelled\n',
'2021-12-06T16:30:59.054Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:59.055Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:59.055Z project Test run was cancelled\n',
'2021-12-06T16:30:59.135Z workers Scheduling Jest Test Run (mlwwu): 2021-12-06T16:30:58.207Z\n',
'2021-12-06T16:30:59.186Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:59.187Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:59.187Z project Test run was cancelled\n',
'2021-12-06T16:30:59.199Z workers [mlwwu] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:59.200Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:59.200Z project Test run finished\n',
'2021-12-06T16:30:59.200Z project Test run data re-queued\n',
'2021-12-06T16:30:59.205Z workers Jest Test Run Complete (as96u): 2021-12-06T16:30:59.155Z\n',
'2021-12-06T16:30:59.243Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:59.243Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:59.243Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:59.243Z nodeRunner Starting sandbox [worker #0, session #gneb5]\n',
'2021-12-06T16:30:59.243Z nodeRunner Preparing sandbox [worker #0, session #gneb5]\n',
'2021-12-06T16:30:59.243Z nodeRunner Prepared sandbox [worker #0, session #gneb5]\n',
'2021-12-06T16:30:59.243Z workers [worker #0, session #gneb5] Running tests in sandbox\n',
'2021-12-06T16:30:59.372Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:59.372Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:59.372Z project Test run was cancelled\n',
'2021-12-06T16:30:59.620Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:30:59.621Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:30:59.621Z project Test run was cancelled\n',
'2021-12-06T16:30:59.651Z workers Scheduling Jest Test Run (gneb5): 2021-12-06T16:30:59.246Z\n',
'2021-12-06T16:30:59.670Z workers [gneb5] Sandbox is responsive, closing it\n',
'2021-12-06T16:30:59.670Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:30:59.670Z project Test run finished\n',
'2021-12-06T16:30:59.670Z project Test run data re-queued\n',
'2021-12-06T16:30:59.674Z project Test run started; run priority: 2\n',
'2021-12-06T16:30:59.674Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:30:59.675Z workers Starting test run, priority: 2\n',
'2021-12-06T16:30:59.675Z nodeRunner Starting sandbox [worker #0, session #dz7nd]\n',
'2021-12-06T16:30:59.675Z nodeRunner Preparing sandbox [worker #0, session #dz7nd]\n',
'2021-12-06T16:30:59.675Z nodeRunner Prepared sandbox [worker #0, session #dz7nd]\n',
'2021-12-06T16:30:59.675Z workers [worker #0, session #dz7nd] Running tests in sandbox\n',
'2021-12-06T16:31:00.198Z workers Scheduling Jest Test Run (dz7nd): 2021-12-06T16:30:59.702Z\n',
'2021-12-06T16:31:00.199Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:00.200Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:00.200Z project Test run was cancelled\n',
'2021-12-06T16:31:00.275Z workers [dz7nd] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:00.275Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:00.275Z project Test run finished\n',
'2021-12-06T16:31:00.275Z project Test run data re-queued\n',
'2021-12-06T16:31:00.307Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:00.307Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:00.308Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:00.308Z nodeRunner Starting sandbox [worker #0, session #8k5fp]\n',
'2021-12-06T16:31:00.308Z nodeRunner Preparing sandbox [worker #0, session #8k5fp]\n',
'2021-12-06T16:31:00.308Z nodeRunner Prepared sandbox [worker #0, session #8k5fp]\n',
'2021-12-06T16:31:00.308Z workers [worker #0, session #8k5fp] Running tests in sandbox\n',
'2021-12-06T16:31:00.546Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:00.547Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:00.547Z project Test run was cancelled\n',
'2021-12-06T16:31:00.869Z workers Scheduling Jest Test Run (8k5fp): 2021-12-06T16:31:00.444Z\n',
'2021-12-06T16:31:00.911Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:00.911Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:00.911Z project Test run was cancelled\n',
'2021-12-06T16:31:00.957Z workers [8k5fp] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:00.957Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:00.957Z project Test run finished\n',
'2021-12-06T16:31:00.957Z project Test run data re-queued\n',
'2021-12-06T16:31:00.969Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:00.969Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:00.969Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:00.970Z nodeRunner Starting sandbox [worker #0, session #2y22c]\n',
'2021-12-06T16:31:00.970Z nodeRunner Preparing sandbox [worker #0, session #2y22c]\n',
'2021-12-06T16:31:00.970Z nodeRunner Prepared sandbox [worker #0, session #2y22c]\n',
'2021-12-06T16:31:00.970Z workers [worker #0, session #2y22c] Running tests in sandbox\n',
'2021-12-06T16:31:01.273Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:01.274Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:01.274Z project Test run was cancelled\n',
'2021-12-06T16:31:01.454Z workers Scheduling Jest Test Run (2y22c): 2021-12-06T16:31:00.974Z\n',
'2021-12-06T16:31:01.481Z workers [2y22c] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:01.481Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:01.481Z project Test run finished\n',
'2021-12-06T16:31:01.481Z project Test run data re-queued\n',
'2021-12-06T16:31:01.550Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:01.550Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:01.551Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:01.551Z nodeRunner Starting sandbox [worker #0, session #zog26]\n',
'2021-12-06T16:31:01.551Z nodeRunner Preparing sandbox [worker #0, session #zog26]\n',
'2021-12-06T16:31:01.551Z nodeRunner Prepared sandbox [worker #0, session #zog26]\n',
'2021-12-06T16:31:01.551Z workers [worker #0, session #zog26] Running tests in sandbox\n',
'2021-12-06T16:31:02.042Z workers Scheduling Jest Test Run (zog26): 2021-12-06T16:31:01.560Z\n',
'2021-12-06T16:31:02.104Z workers [zog26] Loaded unknown number of test(s)\n',
'2021-12-06T16:31:02.264Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:02.267Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:02.268Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:31:02.471Z workers [zog26] Test executed: will compile a valid script\n',
'2021-12-06T16:31:03.385Z workers [zog26] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:31:04.848Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:04.850Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:04.850Z project Test run was cancelled\n',
'2021-12-06T16:31:04.857Z workers [zog26] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:04.857Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:04.858Z project Test run finished\n',
'2021-12-06T16:31:04.858Z project Test run data re-queued\n',
'2021-12-06T16:31:04.906Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:04.906Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:04.906Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:04.906Z nodeRunner Starting sandbox [worker #0, session #dbyh5]\n',
'2021-12-06T16:31:04.906Z nodeRunner Preparing sandbox [worker #0, session #dbyh5]\n',
'2021-12-06T16:31:04.906Z nodeRunner Prepared sandbox [worker #0, session #dbyh5]\n',
'2021-12-06T16:31:04.906Z workers [worker #0, session #dbyh5] Running tests in sandbox\n',
'2021-12-06T16:31:05.310Z workers Scheduling Jest Test Run (dbyh5): 2021-12-06T16:31:04.908Z\n',
'2021-12-06T16:31:05.333Z workers [dbyh5] Loaded unknown number of test(s)\n',
'2021-12-06T16:31:05.453Z workers [dbyh5] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:31:05.454Z workers Jest Test Run Complete (mlwwu): 2021-12-06T16:31:05.356Z\n',
'2021-12-06T16:31:05.457Z workers [dbyh5] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:05.458Z project Test run finished\n',
'2021-12-06T16:31:05.458Z project Processed console.log entries\n',
'2021-12-06T16:31:05.458Z project Processed loading sequences\n',
'2021-12-06T16:31:05.458Z project Processed executed tests\n',
'2021-12-06T16:31:05.463Z project Processed code coverage\n',
'2021-12-06T16:31:05.473Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:31:05.751Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:05.755Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:05.757Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:31:06.110Z workers Sandbox (inactive) [dbyh5] error: process.exit called with 1\n',
'2021-12-06T16:31:06.114Z workers Sandbox (inactive) [dbyh5] error: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLo'... 23291 more characters,
'2021-12-06T16:31:06.114Z workers Jest cache corrupted: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLocalRoot),j=e'... 23689 more characters,
'2021-12-06T16:31:06.499Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:06.507Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:06.508Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:06.508Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:06.508Z nodeRunner Starting sandbox [worker #0, session #wtu3m]\n',
'2021-12-06T16:31:06.509Z nodeRunner Preparing sandbox [worker #0, session #wtu3m]\n',
'2021-12-06T16:31:06.509Z nodeRunner Prepared sandbox [worker #0, session #wtu3m]\n',
'2021-12-06T16:31:06.509Z workers [worker #0, session #wtu3m] Running tests in sandbox\n',
'2021-12-06T16:31:06.511Z project Test run finished\n',
'2021-12-06T16:31:07.447Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:07.449Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:07.450Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:31:07.976Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:07.976Z workers [wtu3m] Sandbox can not be pinged: not opened\n',
'2021-12-06T16:31:07.976Z workers [wtu3m] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:31:07.977Z workers [wtu3m] Sandbox closing error, not opened\n',
'2021-12-06T16:31:07.977Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:07.977Z project Test run was cancelled\n',
'2021-12-06T16:31:07.980Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:07.981Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:07.981Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:07.981Z nodeRunner Starting sandbox [worker #0, session #3xf6u]\n',
'2021-12-06T16:31:07.981Z nodeRunner Preparing sandbox [worker #0, session #3xf6u]\n',
'2021-12-06T16:31:07.981Z workers Starting run worker instance #0\n',
'2021-12-06T16:31:08.128Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:31:08.129Z nodeRunner Prepared sandbox [worker #0, session #3xf6u]\n',
'2021-12-06T16:31:08.129Z workers [worker #0, session #3xf6u] Running tests in sandbox\n',
'2021-12-06T16:31:08.312Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:08.313Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:08.313Z project Test run was cancelled\n',
'2021-12-06T16:31:08.757Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:08.757Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:08.757Z project Test run was cancelled\n',
'2021-12-06T16:31:08.859Z workers [3xf6u] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:08.860Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:08.860Z project Test run finished\n',
'2021-12-06T16:31:08.860Z project Test run data re-queued\n',
'2021-12-06T16:31:08.918Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:08.918Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:08.919Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:08.919Z nodeRunner Starting sandbox [worker #0, session #xbv8p]\n',
'2021-12-06T16:31:08.919Z nodeRunner Preparing sandbox [worker #0, session #xbv8p]\n',
'2021-12-06T16:31:08.919Z nodeRunner Prepared sandbox [worker #0, session #xbv8p]\n',
'2021-12-06T16:31:08.919Z workers [worker #0, session #xbv8p] Running tests in sandbox\n',
'2021-12-06T16:31:09.378Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:09.379Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:09.379Z project Test run was cancelled\n',
'2021-12-06T16:31:09.499Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:09.499Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:09.499Z project Test run was cancelled\n',
'2021-12-06T16:31:09.654Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:09.655Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:09.655Z project Test run was cancelled\n',
'2021-12-06T16:31:09.978Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:09.978Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:09.978Z project Test run was cancelled\n',
'2021-12-06T16:31:10.108Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:10.109Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:10.109Z project Test run was cancelled\n',
'2021-12-06T16:31:11.120Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:11.122Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:11.122Z project Test run was cancelled\n',
'2021-12-06T16:31:11.224Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:11.225Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:11.225Z project Test run was cancelled\n',
'2021-12-06T16:31:11.481Z workers Scheduling Jest Test Run (xbv8p): 2021-12-06T16:31:08.990Z\n',
'2021-12-06T16:31:11.507Z workers [xbv8p] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:11.507Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:11.507Z project Test run finished\n',
'2021-12-06T16:31:11.507Z project Test run data re-queued\n',
'2021-12-06T16:31:11.529Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:11.529Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:11.530Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:11.530Z nodeRunner Starting sandbox [worker #0, session #yqy5y]\n',
'2021-12-06T16:31:11.530Z nodeRunner Preparing sandbox [worker #0, session #yqy5y]\n',
'2021-12-06T16:31:11.530Z nodeRunner Prepared sandbox [worker #0, session #yqy5y]\n',
'2021-12-06T16:31:11.530Z workers [worker #0, session #yqy5y] Running tests in sandbox\n',
'2021-12-06T16:31:11.976Z workers Scheduling Jest Test Run (yqy5y): 2021-12-06T16:31:11.538Z\n',
'2021-12-06T16:31:12.029Z workers [yqy5y] Loaded unknown number of test(s)\n',
'2021-12-06T16:31:12.224Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:12.225Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:12.225Z project Test run was cancelled\n',
'2021-12-06T16:31:12.228Z workers [yqy5y] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:12.228Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:12.228Z project Test run finished\n',
'2021-12-06T16:31:12.228Z project Test run data re-queued\n',
'2021-12-06T16:31:12.281Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:12.281Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:12.282Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:12.282Z nodeRunner Starting sandbox [worker #0, session #4o0wq]\n',
'2021-12-06T16:31:12.282Z nodeRunner Preparing sandbox [worker #0, session #4o0wq]\n',
'2021-12-06T16:31:12.282Z nodeRunner Prepared sandbox [worker #0, session #4o0wq]\n',
'2021-12-06T16:31:12.282Z workers [worker #0, session #4o0wq] Running tests in sandbox\n',
'2021-12-06T16:31:12.418Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:12.419Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:12.419Z project Test run was cancelled\n',
'2021-12-06T16:31:12.680Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:12.680Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:12.680Z project Test run was cancelled\n',
'2021-12-06T16:31:12.870Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:12.870Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:13.012Z workers Sandbox (inactive) [4o0wq] error: process.exit called with 1\n',
'2021-12-06T16:31:13.016Z workers Sandbox (inactive) [4o0wq] error: node:internal/errors:464\n ErrorCaptureStackTrace(err);\n ^\n\nError [ERR_SERVER_NOT_RUNNING]: Server is not running.\n',
'2021-12-06T16:31:13.753Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:13.755Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:13.755Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:31:15.951Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:15.951Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:15.951Z project Test run was cancelled\n',
'2021-12-06T16:31:16.147Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:16.147Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:16.147Z project Test run was cancelled\n',
'2021-12-06T16:31:16.296Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:16.296Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:16.296Z project Test run was cancelled\n',
'2021-12-06T16:31:16.547Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:16.548Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:16.548Z project Test run was cancelled\n',
'2021-12-06T16:31:16.898Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:16.899Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:16.899Z project Test run was cancelled\n',
'2021-12-06T16:31:17.178Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:17.178Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:17.178Z project Test run was cancelled\n',
'2021-12-06T16:31:17.390Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:17.390Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:17.390Z project Test run was cancelled\n',
'2021-12-06T16:31:17.552Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:17.553Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:17.553Z project Test run was cancelled\n',
'2021-12-06T16:31:17.826Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:17.826Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:17.826Z project Test run was cancelled\n',
'2021-12-06T16:31:18.189Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:18.189Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:18.189Z project Test run was cancelled\n',
'2021-12-06T16:31:18.930Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:18.930Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:18.930Z project Test run was cancelled\n',
'2021-12-06T16:31:19.418Z workers [4o0wq] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:31:19.418Z workers [4o0wq] Sandbox closing error, not opened\n',
'2021-12-06T16:31:19.419Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:19.419Z project Test run finished\n',
'2021-12-06T16:31:19.419Z project Test run data re-queued\n',
'2021-12-06T16:31:19.446Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:19.446Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:19.446Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:19.446Z nodeRunner Starting sandbox [worker #0, session #pu8jv]\n',
'2021-12-06T16:31:19.446Z nodeRunner Preparing sandbox [worker #0, session #pu8jv]\n',
'2021-12-06T16:31:19.446Z workers Starting run worker instance #0\n',
'2021-12-06T16:31:19.617Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:31:19.617Z nodeRunner Prepared sandbox [worker #0, session #pu8jv]\n',
'2021-12-06T16:31:19.617Z workers [worker #0, session #pu8jv] Running tests in sandbox\n',
'2021-12-06T16:31:19.744Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:19.745Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:19.745Z project Test run was cancelled\n',
'2021-12-06T16:31:19.984Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:19.985Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:19.985Z project Test run was cancelled\n',
'2021-12-06T16:31:20.176Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:20.177Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:20.177Z project Test run was cancelled\n',
'2021-12-06T16:31:20.315Z workers [pu8jv] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:20.316Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:20.316Z project Test run finished\n',
'2021-12-06T16:31:20.316Z project Test run data re-queued\n',
'2021-12-06T16:31:20.335Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:20.335Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:20.335Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:20.335Z nodeRunner Starting sandbox [worker #0, session #9d5uj]\n',
'2021-12-06T16:31:20.335Z nodeRunner Preparing sandbox [worker #0, session #9d5uj]\n',
'2021-12-06T16:31:20.336Z nodeRunner Prepared sandbox [worker #0, session #9d5uj]\n',
'2021-12-06T16:31:20.336Z workers [worker #0, session #9d5uj] Running tests in sandbox\n',
'2021-12-06T16:31:20.439Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:20.440Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:20.440Z project Test run was cancelled\n',
'2021-12-06T16:31:20.691Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:20.691Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:21.047Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:21.047Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:21.698Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:21.699Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:21.699Z project Test run was cancelled\n',
'2021-12-06T16:31:22.293Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:22.294Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:22.294Z project Test run was cancelled\n',
'2021-12-06T16:31:22.657Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:22.657Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:22.657Z project Test run was cancelled\n',
'2021-12-06T16:31:22.782Z workers Scheduling Jest Test Run (9d5uj): 2021-12-06T16:31:20.416Z\n',
'2021-12-06T16:31:22.805Z workers [9d5uj] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:22.806Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:22.806Z project Test run finished\n',
'2021-12-06T16:31:22.806Z project Test run data re-queued\n',
'2021-12-06T16:31:22.811Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:22.811Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:22.812Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:22.812Z nodeRunner Starting sandbox [worker #0, session #zlxgm]\n',
'2021-12-06T16:31:22.812Z nodeRunner Preparing sandbox [worker #0, session #zlxgm]\n',
'2021-12-06T16:31:22.812Z nodeRunner Prepared sandbox [worker #0, session #zlxgm]\n',
'2021-12-06T16:31:22.813Z workers [worker #0, session #zlxgm] Running tests in sandbox\n',
'2021-12-06T16:31:22.893Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:22.894Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:22.894Z project Test run was cancelled\n',
'2021-12-06T16:31:23.186Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:23.187Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:23.187Z project Test run was cancelled\n',
'2021-12-06T16:31:23.340Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:23.340Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:23.340Z project Test run was cancelled\n',
'2021-12-06T16:31:23.350Z workers Scheduling Jest Test Run (zlxgm): 2021-12-06T16:31:22.833Z\n',
'2021-12-06T16:31:23.380Z workers [zlxgm] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:23.380Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:23.380Z project Test run finished\n',
'2021-12-06T16:31:23.380Z project Test run data re-queued\n',
'2021-12-06T16:31:23.398Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:23.398Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:23.398Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:23.399Z nodeRunner Starting sandbox [worker #0, session #fhee8]\n',
'2021-12-06T16:31:23.399Z nodeRunner Preparing sandbox [worker #0, session #fhee8]\n',
'2021-12-06T16:31:23.399Z nodeRunner Prepared sandbox [worker #0, session #fhee8]\n',
'2021-12-06T16:31:23.399Z workers [worker #0, session #fhee8] Running tests in sandbox\n',
'2021-12-06T16:31:23.549Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:23.550Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:23.550Z project Test run was cancelled\n',
'2021-12-06T16:31:23.660Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:23.661Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:23.661Z project Test run was cancelled\n',
'2021-12-06T16:31:23.948Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:23.949Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:23.949Z project Test run was cancelled\n',
'2021-12-06T16:31:24.115Z workers Scheduling Jest Test Run (fhee8): 2021-12-06T16:31:23.401Z\n',
'2021-12-06T16:31:24.162Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:24.162Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:24.226Z workers [fhee8] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:24.227Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:24.227Z project Test run finished\n',
'2021-12-06T16:31:24.227Z project Test run data re-queued\n',
'2021-12-06T16:31:24.257Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:24.257Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:24.258Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:24.258Z nodeRunner Starting sandbox [worker #0, session #w5pj2]\n',
'2021-12-06T16:31:24.258Z nodeRunner Preparing sandbox [worker #0, session #w5pj2]\n',
'2021-12-06T16:31:24.258Z nodeRunner Prepared sandbox [worker #0, session #w5pj2]\n',
'2021-12-06T16:31:24.258Z workers [worker #0, session #w5pj2] Running tests in sandbox\n',
'2021-12-06T16:31:24.374Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:24.375Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:24.375Z project Test run was cancelled\n',
'2021-12-06T16:31:24.481Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:24.481Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:24.481Z project Test run was cancelled\n',
'2021-12-06T16:31:24.761Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:24.761Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:24.761Z project Test run was cancelled\n',
'2021-12-06T16:31:24.889Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:24.889Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:24.889Z project Test run was cancelled\n',
'2021-12-06T16:31:25.041Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:25.041Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:25.041Z project Test run was cancelled\n',
'2021-12-06T16:31:25.184Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:25.186Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:25.186Z project Test run was cancelled\n',
'2021-12-06T16:31:25.334Z workers Scheduling Jest Test Run (w5pj2): 2021-12-06T16:31:24.766Z\n',
'2021-12-06T16:31:25.399Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:25.399Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:25.399Z project Test run was cancelled\n',
'2021-12-06T16:31:25.413Z workers [w5pj2] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:25.414Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:25.414Z project Test run finished\n',
'2021-12-06T16:31:25.414Z project Test run data re-queued\n',
'2021-12-06T16:31:25.467Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:25.467Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:25.468Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:25.468Z nodeRunner Starting sandbox [worker #0, session #6aavg]\n',
'2021-12-06T16:31:25.468Z nodeRunner Preparing sandbox [worker #0, session #6aavg]\n',
'2021-12-06T16:31:25.468Z nodeRunner Prepared sandbox [worker #0, session #6aavg]\n',
'2021-12-06T16:31:25.468Z workers [worker #0, session #6aavg] Running tests in sandbox\n',
'2021-12-06T16:31:25.552Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:25.553Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:25.553Z project Test run was cancelled\n',
'2021-12-06T16:31:25.673Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:25.674Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:25.674Z project Test run was cancelled\n',
'2021-12-06T16:31:25.808Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:25.808Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:25.808Z project Test run was cancelled\n',
'2021-12-06T16:31:26.010Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:26.010Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:26.010Z project Test run was cancelled\n',
'2021-12-06T16:31:26.025Z workers Scheduling Jest Test Run (6aavg): 2021-12-06T16:31:25.476Z\n',
'2021-12-06T16:31:26.062Z workers [6aavg] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:26.063Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:26.063Z project Test run finished\n',
'2021-12-06T16:31:26.063Z project Test run data re-queued\n',
'2021-12-06T16:31:26.123Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:26.123Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:26.124Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:26.124Z nodeRunner Starting sandbox [worker #0, session #fftap]\n',
'2021-12-06T16:31:26.124Z nodeRunner Preparing sandbox [worker #0, session #fftap]\n',
'2021-12-06T16:31:26.124Z nodeRunner Prepared sandbox [worker #0, session #fftap]\n',
'2021-12-06T16:31:26.124Z workers [worker #0, session #fftap] Running tests in sandbox\n',
'2021-12-06T16:31:26.332Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:26.333Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:26.333Z project Test run was cancelled\n',
'2021-12-06T16:31:26.432Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:26.433Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:26.433Z project Test run was cancelled\n',
'2021-12-06T16:31:26.686Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:26.687Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:26.687Z project Test run was cancelled\n',
'2021-12-06T16:31:26.799Z workers Scheduling Jest Test Run (fftap): 2021-12-06T16:31:26.128Z\n',
'2021-12-06T16:31:26.835Z workers [fftap] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:26.836Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:26.836Z project Test run finished\n',
'2021-12-06T16:31:26.836Z project Test run data re-queued\n',
'2021-12-06T16:31:26.847Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:26.847Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:26.848Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:26.848Z nodeRunner Starting sandbox [worker #0, session #18ozz]\n',
'2021-12-06T16:31:26.848Z nodeRunner Preparing sandbox [worker #0, session #18ozz]\n',
'2021-12-06T16:31:26.848Z nodeRunner Prepared sandbox [worker #0, session #18ozz]\n',
'2021-12-06T16:31:26.848Z workers [worker #0, session #18ozz] Running tests in sandbox\n',
'2021-12-06T16:31:26.924Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:26.924Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:27.316Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:27.316Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:27.468Z workers Scheduling Jest Test Run (18ozz): 2021-12-06T16:31:27.043Z\n',
'2021-12-06T16:31:27.535Z workers [18ozz] Loaded unknown number of test(s)\n',
'2021-12-06T16:31:27.692Z workers Sandbox (active) [18ozz] error: \n',
'2021-12-06T16:31:27.742Z workers [18ozz] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:31:27.742Z workers Jest Test Run Complete (fftap): 2021-12-06T16:31:27.462Z\n',
'2021-12-06T16:31:27.745Z workers [18ozz] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:27.746Z project Test run finished\n',
'2021-12-06T16:31:27.746Z project Processed console.log entries\n',
'2021-12-06T16:31:27.746Z project Processed loading sequences\n',
'2021-12-06T16:31:27.746Z project Processed executed tests\n',
'2021-12-06T16:31:27.747Z project Processed code coverage\n',
'2021-12-06T16:31:27.753Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:31:27.761Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:27.771Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:27.771Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:27.774Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:27.774Z nodeRunner Starting sandbox [worker #0, session #ludcp]\n',
'2021-12-06T16:31:27.774Z nodeRunner Preparing sandbox [worker #0, session #ludcp]\n',
'2021-12-06T16:31:27.774Z nodeRunner Prepared sandbox [worker #0, session #ludcp]\n',
'2021-12-06T16:31:27.774Z workers [worker #0, session #ludcp] Running tests in sandbox\n',
'2021-12-06T16:31:28.080Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:28.080Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:28.080Z project Test run was cancelled\n',
'2021-12-06T16:31:28.256Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:28.257Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:28.257Z project Test run was cancelled\n',
'2021-12-06T16:31:28.414Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:28.416Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:28.416Z project Test run was cancelled\n',
'2021-12-06T16:31:28.429Z workers Scheduling Jest Test Run (ludcp): 2021-12-06T16:31:27.777Z\n',
'2021-12-06T16:31:28.499Z workers [ludcp] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:28.499Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:28.500Z project Test run finished\n',
'2021-12-06T16:31:28.500Z project Test run data re-queued\n',
'2021-12-06T16:31:28.526Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:28.526Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:28.527Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:28.527Z nodeRunner Starting sandbox [worker #0, session #1qwxc]\n',
'2021-12-06T16:31:28.527Z nodeRunner Preparing sandbox [worker #0, session #1qwxc]\n',
'2021-12-06T16:31:28.527Z nodeRunner Prepared sandbox [worker #0, session #1qwxc]\n',
'2021-12-06T16:31:28.527Z workers [worker #0, session #1qwxc] Running tests in sandbox\n',
'2021-12-06T16:31:28.600Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:28.601Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:28.601Z project Test run was cancelled\n',
'2021-12-06T16:31:28.730Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:28.731Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:28.731Z project Test run was cancelled\n',
'2021-12-06T16:31:28.907Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:28.908Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:28.908Z project Test run was cancelled\n',
'2021-12-06T16:31:29.127Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:29.128Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:29.128Z project Test run was cancelled\n',
'2021-12-06T16:31:29.184Z workers Scheduling Jest Test Run (1qwxc): 2021-12-06T16:31:28.553Z\n',
'2021-12-06T16:31:29.220Z workers [1qwxc] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:29.221Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:29.221Z project Test run finished\n',
'2021-12-06T16:31:29.221Z project Test run data re-queued\n',
'2021-12-06T16:31:29.234Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:29.234Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:29.234Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:29.235Z nodeRunner Starting sandbox [worker #0, session #2tirq]\n',
'2021-12-06T16:31:29.235Z nodeRunner Preparing sandbox [worker #0, session #2tirq]\n',
'2021-12-06T16:31:29.235Z nodeRunner Prepared sandbox [worker #0, session #2tirq]\n',
'2021-12-06T16:31:29.235Z workers [worker #0, session #2tirq] Running tests in sandbox\n',
'2021-12-06T16:31:29.576Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:29.576Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:29.576Z project Test run was cancelled\n',
'2021-12-06T16:31:29.811Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:29.812Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:29.812Z project Test run was cancelled\n',
'2021-12-06T16:31:30.159Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:30.160Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:30.160Z project Test run was cancelled\n',
'2021-12-06T16:31:30.459Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:30.460Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:30.460Z project Test run was cancelled\n',
'2021-12-06T16:31:30.650Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:30.651Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:30.651Z project Test run was cancelled\n',
'2021-12-06T16:31:30.911Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:30.912Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:30.912Z project Test run was cancelled\n',
'2021-12-06T16:31:30.979Z workers Scheduling Jest Test Run (2tirq): 2021-12-06T16:31:30.038Z\n',
'2021-12-06T16:31:31.067Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:31.068Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:31.068Z project Test run was cancelled\n',
'2021-12-06T16:31:31.212Z workers [2tirq] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:31.212Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:31.212Z project Test run finished\n',
'2021-12-06T16:31:31.212Z project Test run data re-queued\n',
'2021-12-06T16:31:31.239Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:31.241Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:31.242Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:31.243Z nodeRunner Starting sandbox [worker #0, session #zktvi]\n',
'2021-12-06T16:31:31.243Z nodeRunner Preparing sandbox [worker #0, session #zktvi]\n',
'2021-12-06T16:31:31.243Z nodeRunner Prepared sandbox [worker #0, session #zktvi]\n',
'2021-12-06T16:31:31.243Z workers [worker #0, session #zktvi] Running tests in sandbox\n',
'2021-12-06T16:31:31.275Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:31.277Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:31.277Z project Test run was cancelled\n',
'2021-12-06T16:31:31.515Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:31.515Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:31.829Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:31.830Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:31.830Z project Test run was cancelled\n',
'2021-12-06T16:31:32.056Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:32.057Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:32.057Z project Test run was cancelled\n',
'2021-12-06T16:31:32.215Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:32.216Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:32.216Z project Test run was cancelled\n',
'2021-12-06T16:31:32.245Z workers Scheduling Jest Test Run (zktvi): 2021-12-06T16:31:31.250Z\n',
'2021-12-06T16:31:32.328Z workers [zktvi] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:32.329Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:32.329Z project Test run finished\n',
'2021-12-06T16:31:32.329Z project Test run data re-queued\n',
'2021-12-06T16:31:32.383Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:32.383Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:32.384Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:32.384Z nodeRunner Starting sandbox [worker #0, session #6l997]\n',
'2021-12-06T16:31:32.384Z nodeRunner Preparing sandbox [worker #0, session #6l997]\n',
'2021-12-06T16:31:32.384Z nodeRunner Prepared sandbox [worker #0, session #6l997]\n',
'2021-12-06T16:31:32.384Z workers [worker #0, session #6l997] Running tests in sandbox\n',
'2021-12-06T16:31:32.461Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:32.463Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:32.463Z project Test run was cancelled\n',
'2021-12-06T16:31:32.725Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:32.726Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:32.726Z project Test run was cancelled\n',
'2021-12-06T16:31:32.911Z workers Scheduling Jest Test Run (6l997): 2021-12-06T16:31:32.425Z\n',
'2021-12-06T16:31:32.965Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:32.965Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:33.076Z workers Jest Test Run Complete (6l997): 2021-12-06T16:31:32.904Z\n',
'2021-12-06T16:31:33.076Z workers [6l997] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:33.077Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:33.077Z project Test run finished\n',
'2021-12-06T16:31:33.077Z project Test run data re-queued\n',
'2021-12-06T16:31:33.080Z workers Jest Test Run Complete (w5pj2): 2021-12-06T16:31:32.969Z\n',
'2021-12-06T16:31:33.087Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:33.087Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:33.088Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:33.088Z nodeRunner Starting sandbox [worker #0, session #mtbcx]\n',
'2021-12-06T16:31:33.089Z nodeRunner Preparing sandbox [worker #0, session #mtbcx]\n',
'2021-12-06T16:31:33.089Z nodeRunner Prepared sandbox [worker #0, session #mtbcx]\n',
'2021-12-06T16:31:33.089Z workers [worker #0, session #mtbcx] Running tests in sandbox\n',
'2021-12-06T16:31:33.625Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:33.625Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:33.625Z project Test run was cancelled\n',
'2021-12-06T16:31:33.643Z workers Scheduling Jest Test Run (mtbcx): 2021-12-06T16:31:33.094Z\n',
'2021-12-06T16:31:33.709Z workers [mtbcx] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:33.710Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:33.710Z project Test run finished\n',
'2021-12-06T16:31:33.710Z project Test run data re-queued\n',
'2021-12-06T16:31:33.733Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:33.734Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:33.734Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:33.734Z nodeRunner Starting sandbox [worker #0, session #xipl5]\n',
'2021-12-06T16:31:33.735Z nodeRunner Preparing sandbox [worker #0, session #xipl5]\n',
'2021-12-06T16:31:33.735Z nodeRunner Prepared sandbox [worker #0, session #xipl5]\n',
'2021-12-06T16:31:33.735Z workers [worker #0, session #xipl5] Running tests in sandbox\n',
'2021-12-06T16:31:34.334Z workers Scheduling Jest Test Run (xipl5): 2021-12-06T16:31:33.803Z\n',
'2021-12-06T16:31:34.434Z workers [xipl5] Loaded unknown number of test(s)\n',
'2021-12-06T16:31:34.521Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:34.525Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:34.526Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:31:34.832Z workers [xipl5] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:31:34.833Z workers Jest Test Run Complete (6aavg): 2021-12-06T16:31:34.705Z\n',
'2021-12-06T16:31:34.924Z workers [xipl5] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:34.926Z project Test run finished\n',
'2021-12-06T16:31:34.926Z project Processed console.log entries\n',
'2021-12-06T16:31:34.926Z project Processed loading sequences\n',
'2021-12-06T16:31:34.926Z project Processed executed tests\n',
'2021-12-06T16:31:34.928Z project Processed code coverage\n',
'2021-12-06T16:31:34.937Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:31:34.973Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:34.985Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:34.985Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:34.986Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:34.986Z nodeRunner Starting sandbox [worker #0, session #6wvy8]\n',
'2021-12-06T16:31:34.986Z nodeRunner Preparing sandbox [worker #0, session #6wvy8]\n',
'2021-12-06T16:31:34.986Z nodeRunner Prepared sandbox [worker #0, session #6wvy8]\n',
'2021-12-06T16:31:34.986Z workers [worker #0, session #6wvy8] Running tests in sandbox\n',
'2021-12-06T16:31:35.393Z workers Scheduling Jest Test Run (6wvy8): 2021-12-06T16:31:34.992Z\n',
'2021-12-06T16:31:35.395Z workers Sandbox (active) [6wvy8] error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
" 72 | .expect('Content-Type', /json/)\n" +
' 73 | .\n' +
'> 74 | ;\n' +
' | ^ SyntaxError: Unexpected token (74:8)\n' +
' 75 | }));\n' +
' 76 | it("will respond with a page on root", () => __awaiter(void 0, void 0, void 0, function* () {\n' +
' 77 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n',
'2021-12-06T16:31:35.399Z workers [6wvy8] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:31:35.399Z workers Jest Test Run Complete (6wvy8): 2021-12-06T16:31:35.392Z\n',
'2021-12-06T16:31:35.401Z workers [6wvy8] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:35.402Z workers Failed to map the stack to user code, entry message: Failed to instrument src/WebApp/WebApp.test.ts\n' +
" 72 | .expect('Content-Type', /json/)\n" +
' 73 | .\n' +
'> 74 | ;\n' +
' | ^ SyntaxError: Unexpected token (74:8)\n' +
' 75 | }));\n' +
' 76 | it("will respond with a page on root", () => __awaiter(void 0, void 0, void 0, function* () {\n' +
' 77 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`), stack: Error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
" 72 | .expect('Content-Type', /json/)\n" +
' 73 | .\n' +
'> 74 | ;\n' +
' | ^ SyntaxError: Unexpected token (74:8)\n' +
' 75 | }));\n' +
' 76 | it("will respond with a page on root", () => __awaiter(void 0, void 0, void 0, function* () {\n' +
' 77 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n' +
' at Object.formatInstrumentationError (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:29:31736)\n' +
' at s (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/runners/node/jest@24.8.0/initializer.js:15:1423)\n' +
' at TsJestTransformer.e.process (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/runners/node/jest@24.8.0/initializer.js:15:3031)\n' +
' at ScriptTransformer.transformSource (<rootDir>/node_modules/@jest/transform/build/ScriptTransformer.js:612:31)\n' +
' at ScriptTransformer._transformAndBuildScript (\n',
'2021-12-06T16:31:35.402Z project Test run finished\n',
'2021-12-06T16:31:35.402Z project Processed console.log entries\n',
'2021-12-06T16:31:35.402Z project Processed loading sequences\n',
'2021-12-06T16:31:35.402Z project Processed executed tests\n',
'2021-12-06T16:31:35.403Z project Processed code coverage\n',
'2021-12-06T16:31:35.407Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:31:35.921Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:35.926Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:35.927Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:31:36.440Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:36.445Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:36.446Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:36.446Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:36.446Z nodeRunner Starting sandbox [worker #0, session #zfc2w]\n',
'2021-12-06T16:31:36.446Z nodeRunner Preparing sandbox [worker #0, session #zfc2w]\n',
'2021-12-06T16:31:36.446Z nodeRunner Prepared sandbox [worker #0, session #zfc2w]\n',
'2021-12-06T16:31:36.446Z workers [worker #0, session #zfc2w] Running tests in sandbox\n',
'2021-12-06T16:31:36.783Z workers Scheduling Jest Test Run (zfc2w): 2021-12-06T16:31:36.448Z\n',
'2021-12-06T16:31:36.783Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:36.783Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:36.783Z project Test run was cancelled\n',
'2021-12-06T16:31:36.833Z workers [zfc2w] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:36.833Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:36.833Z project Test run finished\n',
'2021-12-06T16:31:36.833Z project Test run data re-queued\n',
'2021-12-06T16:31:36.839Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:36.839Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:36.840Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:36.840Z nodeRunner Starting sandbox [worker #0, session #fw07w]\n',
'2021-12-06T16:31:36.840Z nodeRunner Preparing sandbox [worker #0, session #fw07w]\n',
'2021-12-06T16:31:36.840Z nodeRunner Prepared sandbox [worker #0, session #fw07w]\n',
'2021-12-06T16:31:36.840Z workers [worker #0, session #fw07w] Running tests in sandbox\n',
'2021-12-06T16:31:37.166Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:37.167Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:37.167Z project Test run was cancelled\n',
'2021-12-06T16:31:37.333Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:37.333Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:37.333Z project Test run was cancelled\n',
'2021-12-06T16:31:37.452Z workers Jest Test Run Complete (ludcp): 2021-12-06T16:31:36.832Z\n',
'2021-12-06T16:31:37.522Z workers Scheduling Jest Test Run (fw07w): 2021-12-06T16:31:36.912Z\n',
'2021-12-06T16:31:37.527Z workers [fw07w] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:37.528Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:37.528Z project Test run finished\n',
'2021-12-06T16:31:37.528Z project Test run data re-queued\n',
'2021-12-06T16:31:37.537Z workers Jest Test Run Complete (2tirq): 2021-12-06T16:31:37.486Z\n',
'2021-12-06T16:31:37.541Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:37.542Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:37.542Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:37.542Z nodeRunner Starting sandbox [worker #0, session #t9xes]\n',
'2021-12-06T16:31:37.542Z nodeRunner Preparing sandbox [worker #0, session #t9xes]\n',
'2021-12-06T16:31:37.542Z nodeRunner Prepared sandbox [worker #0, session #t9xes]\n',
'2021-12-06T16:31:37.542Z workers [worker #0, session #t9xes] Running tests in sandbox\n',
'2021-12-06T16:31:37.888Z workers Scheduling Jest Test Run (t9xes): 2021-12-06T16:31:37.545Z\n',
'2021-12-06T16:31:37.906Z workers [t9xes] Loaded unknown number of test(s)\n',
'2021-12-06T16:31:38.320Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:38.324Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:38.325Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:31:38.732Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:38.733Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:38.733Z project Test run was cancelled\n',
'2021-12-06T16:31:38.767Z workers [t9xes] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:38.767Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:38.767Z project Test run finished\n',
'2021-12-06T16:31:38.767Z project Test run data re-queued\n',
'2021-12-06T16:31:38.792Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:38.793Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:38.794Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:38.795Z nodeRunner Starting sandbox [worker #0, session #1ytsi]\n',
'2021-12-06T16:31:38.795Z nodeRunner Preparing sandbox [worker #0, session #1ytsi]\n',
'2021-12-06T16:31:38.795Z nodeRunner Prepared sandbox [worker #0, session #1ytsi]\n',
'2021-12-06T16:31:38.795Z workers [worker #0, session #1ytsi] Running tests in sandbox\n',
'2021-12-06T16:31:38.884Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:38.885Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:38.885Z project Test run was cancelled\n',
'2021-12-06T16:31:39.076Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:39.076Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:39.076Z project Test run was cancelled\n',
'2021-12-06T16:31:39.230Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:39.230Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:39.230Z project Test run was cancelled\n',
'2021-12-06T16:31:39.467Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:39.467Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:39.554Z workers Scheduling Jest Test Run (1ytsi): 2021-12-06T16:31:38.798Z\n',
'2021-12-06T16:31:39.645Z workers [1ytsi] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:39.645Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:39.645Z project Test run finished\n',
'2021-12-06T16:31:39.645Z project Test run data re-queued\n',
'2021-12-06T16:31:39.653Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:39.653Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:39.654Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:39.654Z nodeRunner Starting sandbox [worker #0, session #7iq2r]\n',
'2021-12-06T16:31:39.654Z nodeRunner Preparing sandbox [worker #0, session #7iq2r]\n',
'2021-12-06T16:31:39.654Z nodeRunner Prepared sandbox [worker #0, session #7iq2r]\n',
'2021-12-06T16:31:39.654Z workers [worker #0, session #7iq2r] Running tests in sandbox\n',
'2021-12-06T16:31:39.803Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:39.805Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:39.805Z project Test run was cancelled\n',
'2021-12-06T16:31:40.225Z workers Scheduling Jest Test Run (7iq2r): 2021-12-06T16:31:39.797Z\n',
'2021-12-06T16:31:40.252Z workers [7iq2r] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:40.252Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:40.252Z project Test run finished\n',
'2021-12-06T16:31:40.252Z project Test run data re-queued\n',
'2021-12-06T16:31:40.267Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:40.268Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:40.268Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:40.268Z nodeRunner Starting sandbox [worker #0, session #ljmz8]\n',
'2021-12-06T16:31:40.268Z nodeRunner Preparing sandbox [worker #0, session #ljmz8]\n',
'2021-12-06T16:31:40.268Z nodeRunner Prepared sandbox [worker #0, session #ljmz8]\n',
'2021-12-06T16:31:40.268Z workers [worker #0, session #ljmz8] Running tests in sandbox\n',
'2021-12-06T16:31:40.535Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:40.536Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:40.536Z project Test run was cancelled\n',
'2021-12-06T16:31:40.991Z workers Jest Test Run Complete (zfc2w): 2021-12-06T16:31:40.274Z\n',
'2021-12-06T16:31:41.095Z workers Scheduling Jest Test Run (ljmz8): 2021-12-06T16:31:40.485Z\n',
'2021-12-06T16:31:41.151Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:41.152Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:41.152Z project Test run was cancelled\n',
'2021-12-06T16:31:41.156Z workers [ljmz8] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:41.158Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:41.158Z project Test run finished\n',
'2021-12-06T16:31:41.159Z project Test run data re-queued\n',
'2021-12-06T16:31:41.209Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:41.209Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:41.209Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:41.210Z nodeRunner Starting sandbox [worker #0, session #p32j2]\n',
'2021-12-06T16:31:41.210Z nodeRunner Preparing sandbox [worker #0, session #p32j2]\n',
'2021-12-06T16:31:41.210Z nodeRunner Prepared sandbox [worker #0, session #p32j2]\n',
'2021-12-06T16:31:41.210Z workers [worker #0, session #p32j2] Running tests in sandbox\n',
'2021-12-06T16:31:41.412Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:41.414Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:41.414Z project Test run was cancelled\n',
'2021-12-06T16:31:41.700Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:41.700Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:41.700Z project Test run was cancelled\n',
'2021-12-06T16:31:41.798Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:41.798Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:41.798Z project Test run was cancelled\n',
'2021-12-06T16:31:41.903Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:41.903Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:41.903Z project Test run was cancelled\n',
'2021-12-06T16:31:41.964Z workers Scheduling Jest Test Run (p32j2): 2021-12-06T16:31:41.361Z\n',
'2021-12-06T16:31:42.034Z workers [p32j2] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:42.035Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:42.035Z project Test run finished\n',
'2021-12-06T16:31:42.035Z project Test run data re-queued\n',
'2021-12-06T16:31:42.063Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:42.063Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:42.064Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:42.064Z nodeRunner Starting sandbox [worker #0, session #l3jai]\n',
'2021-12-06T16:31:42.064Z nodeRunner Preparing sandbox [worker #0, session #l3jai]\n',
'2021-12-06T16:31:42.064Z nodeRunner Prepared sandbox [worker #0, session #l3jai]\n',
'2021-12-06T16:31:42.064Z workers [worker #0, session #l3jai] Running tests in sandbox\n',
'2021-12-06T16:31:42.083Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:42.084Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:42.085Z project Test run was cancelled\n',
'2021-12-06T16:31:42.363Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:42.365Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:42.365Z project Test run was cancelled\n',
'2021-12-06T16:31:42.465Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:42.466Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:42.466Z project Test run was cancelled\n',
'2021-12-06T16:31:42.765Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:42.766Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:42.766Z project Test run was cancelled\n',
'2021-12-06T16:31:42.821Z workers Scheduling Jest Test Run (l3jai): 2021-12-06T16:31:42.068Z\n',
'2021-12-06T16:31:42.874Z workers [l3jai] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:42.875Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:42.875Z project Test run finished\n',
'2021-12-06T16:31:42.875Z project Test run data re-queued\n',
'2021-12-06T16:31:42.942Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:42.943Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:42.944Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:42.944Z nodeRunner Starting sandbox [worker #0, session #urmvr]\n',
'2021-12-06T16:31:42.944Z nodeRunner Preparing sandbox [worker #0, session #urmvr]\n',
'2021-12-06T16:31:42.944Z nodeRunner Prepared sandbox [worker #0, session #urmvr]\n',
'2021-12-06T16:31:42.944Z workers [worker #0, session #urmvr] Running tests in sandbox\n',
'2021-12-06T16:31:43.085Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:43.086Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:43.086Z project Test run was cancelled\n',
'2021-12-06T16:31:43.178Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:43.179Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:43.179Z project Test run was cancelled\n',
'2021-12-06T16:31:43.393Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:43.394Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:43.394Z project Test run was cancelled\n',
'2021-12-06T16:31:43.671Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:43.672Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:43.672Z project Test run was cancelled\n',
'2021-12-06T16:31:43.680Z workers Scheduling Jest Test Run (urmvr): 2021-12-06T16:31:42.967Z\n',
'2021-12-06T16:31:43.820Z workers [urmvr] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:43.820Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:43.820Z project Test run finished\n',
'2021-12-06T16:31:43.820Z project Test run data re-queued\n',
'2021-12-06T16:31:43.827Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:43.828Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:43.828Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:43.828Z nodeRunner Starting sandbox [worker #0, session #4cve8]\n',
'2021-12-06T16:31:43.828Z nodeRunner Preparing sandbox [worker #0, session #4cve8]\n',
'2021-12-06T16:31:43.828Z nodeRunner Prepared sandbox [worker #0, session #4cve8]\n',
'2021-12-06T16:31:43.828Z workers [worker #0, session #4cve8] Running tests in sandbox\n',
'2021-12-06T16:31:43.832Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:43.832Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:43.832Z project Test run was cancelled\n',
'2021-12-06T16:31:43.978Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:43.979Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:43.979Z project Test run was cancelled\n',
'2021-12-06T16:31:44.254Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:44.255Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:44.255Z project Test run was cancelled\n',
'2021-12-06T16:31:44.550Z workers Jest Test Run Complete (t9xes): 2021-12-06T16:31:43.834Z\n',
'2021-12-06T16:31:44.554Z workers Scheduling Jest Test Run (4cve8): 2021-12-06T16:31:44.051Z\n',
'2021-12-06T16:31:44.560Z workers [4cve8] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:44.561Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:44.561Z project Test run finished\n',
'2021-12-06T16:31:44.562Z project Test run data re-queued\n',
'2021-12-06T16:31:44.612Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:44.612Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:44.613Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:44.613Z nodeRunner Starting sandbox [worker #0, session #f0xft]\n',
'2021-12-06T16:31:44.613Z nodeRunner Preparing sandbox [worker #0, session #f0xft]\n',
'2021-12-06T16:31:44.613Z nodeRunner Prepared sandbox [worker #0, session #f0xft]\n',
'2021-12-06T16:31:44.613Z workers [worker #0, session #f0xft] Running tests in sandbox\n',
'2021-12-06T16:31:44.830Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:44.830Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:45.111Z workers Scheduling Jest Test Run (f0xft): 2021-12-06T16:31:44.617Z\n',
'2021-12-06T16:31:45.135Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:45.136Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:45.136Z project Test run was cancelled\n',
'2021-12-06T16:31:45.141Z workers [f0xft] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:45.142Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:45.142Z project Test run finished\n',
'2021-12-06T16:31:45.142Z project Test run data re-queued\n',
'2021-12-06T16:31:45.192Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:45.193Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:45.194Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:45.194Z nodeRunner Starting sandbox [worker #0, session #zep8e]\n',
'2021-12-06T16:31:45.194Z nodeRunner Preparing sandbox [worker #0, session #zep8e]\n',
'2021-12-06T16:31:45.194Z nodeRunner Prepared sandbox [worker #0, session #zep8e]\n',
'2021-12-06T16:31:45.194Z workers [worker #0, session #zep8e] Running tests in sandbox\n',
'2021-12-06T16:31:45.387Z workers Sandbox (active) [zep8e] error: process.exit called with 1\n',
'2021-12-06T16:31:45.391Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:45.392Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:45.392Z project Test run was cancelled\n',
'2021-12-06T16:31:45.393Z workers Sandbox (inactive) [zep8e] error: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLo'... 23291 more characters,
'2021-12-06T16:31:45.393Z workers Jest cache corrupted: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLocalRoot),j=e'... 23615 more characters,
'2021-12-06T16:31:45.518Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:45.519Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:45.519Z project Test run was cancelled\n',
'2021-12-06T16:31:45.705Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:45.705Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:45.705Z project Test run was cancelled\n',
'2021-12-06T16:31:45.866Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:45.866Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:45.866Z project Test run was cancelled\n',
'2021-12-06T16:31:46.002Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:46.003Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:46.003Z project Test run was cancelled\n',
'2021-12-06T16:31:46.383Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:46.383Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:46.383Z project Test run was cancelled\n',
'2021-12-06T16:31:46.937Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:46.938Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:46.938Z project Test run was cancelled\n',
'2021-12-06T16:31:47.055Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:47.056Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:47.056Z project Test run was cancelled\n',
'2021-12-06T16:31:47.303Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:47.304Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:47.304Z project Test run was cancelled\n',
'2021-12-06T16:31:47.392Z workers [zep8e] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:31:47.393Z workers [zep8e] Sandbox closing error, not opened\n',
'2021-12-06T16:31:47.393Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:47.393Z project Test run finished\n',
'2021-12-06T16:31:47.393Z project Test run data re-queued\n',
'2021-12-06T16:31:47.418Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:47.418Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:47.419Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:47.419Z nodeRunner Starting sandbox [worker #0, session #p9ywt]\n',
'2021-12-06T16:31:47.419Z nodeRunner Preparing sandbox [worker #0, session #p9ywt]\n',
'2021-12-06T16:31:47.419Z workers Starting run worker instance #0\n',
'2021-12-06T16:31:47.595Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:31:47.595Z nodeRunner Prepared sandbox [worker #0, session #p9ywt]\n',
'2021-12-06T16:31:47.596Z workers [worker #0, session #p9ywt] Running tests in sandbox\n',
'2021-12-06T16:31:47.612Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:47.612Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:47.612Z project Test run was cancelled\n',
'2021-12-06T16:31:47.745Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:47.746Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:47.746Z project Test run was cancelled\n',
'2021-12-06T16:31:47.934Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:47.934Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:47.934Z project Test run was cancelled\n',
'2021-12-06T16:31:48.226Z workers [p9ywt] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:48.227Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:48.227Z project Test run finished\n',
'2021-12-06T16:31:48.227Z project Test run data re-queued\n',
'2021-12-06T16:31:48.241Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:48.242Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:48.242Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:48.243Z nodeRunner Starting sandbox [worker #0, session #qmmwn]\n',
'2021-12-06T16:31:48.243Z nodeRunner Preparing sandbox [worker #0, session #qmmwn]\n',
'2021-12-06T16:31:48.243Z nodeRunner Prepared sandbox [worker #0, session #qmmwn]\n',
'2021-12-06T16:31:48.243Z workers [worker #0, session #qmmwn] Running tests in sandbox\n',
'2021-12-06T16:31:48.859Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:48.860Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:48.860Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:31:49.197Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:49.198Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:49.198Z project Test run was cancelled\n',
'2021-12-06T16:31:49.315Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:49.315Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:49.315Z project Test run was cancelled\n',
'2021-12-06T16:31:49.468Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:49.468Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:49.468Z project Test run was cancelled\n',
'2021-12-06T16:31:49.706Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:49.706Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:49.706Z project Test run was cancelled\n',
'2021-12-06T16:31:50.680Z workers Scheduling Jest Test Run (qmmwn): 2021-12-06T16:31:48.305Z\n',
'2021-12-06T16:31:50.681Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:50.681Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:50.681Z project Test run was cancelled\n',
'2021-12-06T16:31:50.701Z workers [qmmwn] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:50.701Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:50.701Z project Test run finished\n',
'2021-12-06T16:31:50.701Z project Test run data re-queued\n',
'2021-12-06T16:31:50.740Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:50.741Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:50.741Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:50.741Z nodeRunner Starting sandbox [worker #0, session #nxvcp]\n',
'2021-12-06T16:31:50.742Z nodeRunner Preparing sandbox [worker #0, session #nxvcp]\n',
'2021-12-06T16:31:50.742Z nodeRunner Prepared sandbox [worker #0, session #nxvcp]\n',
'2021-12-06T16:31:50.742Z workers [worker #0, session #nxvcp] Running tests in sandbox\n',
'2021-12-06T16:31:50.885Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:50.886Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:50.886Z project Test run was cancelled\n',
'2021-12-06T16:31:51.061Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:51.061Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:51.061Z project Test run was cancelled\n',
'2021-12-06T16:31:51.199Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:51.199Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:51.199Z project Test run was cancelled\n',
'2021-12-06T16:31:51.337Z workers Scheduling Jest Test Run (nxvcp): 2021-12-06T16:31:50.745Z\n',
'2021-12-06T16:31:51.347Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:51.347Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:51.347Z project Test run was cancelled\n',
'2021-12-06T16:31:51.364Z workers [nxvcp] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:51.364Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:51.365Z project Test run finished\n',
'2021-12-06T16:31:51.365Z project Test run data re-queued\n',
'2021-12-06T16:31:51.408Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:51.408Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:51.410Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:51.410Z nodeRunner Starting sandbox [worker #0, session #4ptel]\n',
'2021-12-06T16:31:51.411Z nodeRunner Preparing sandbox [worker #0, session #4ptel]\n',
'2021-12-06T16:31:51.411Z nodeRunner Prepared sandbox [worker #0, session #4ptel]\n',
'2021-12-06T16:31:51.411Z workers [worker #0, session #4ptel] Running tests in sandbox\n',
'2021-12-06T16:31:51.545Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:51.547Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:51.547Z project Test run was cancelled\n',
'2021-12-06T16:31:51.915Z workers Scheduling Jest Test Run (4ptel): 2021-12-06T16:31:51.416Z\n',
'2021-12-06T16:31:51.952Z workers [4ptel] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:51.952Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:51.952Z project Test run finished\n',
'2021-12-06T16:31:51.952Z project Test run data re-queued\n',
'2021-12-06T16:31:52.006Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:52.006Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:52.007Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:52.007Z nodeRunner Starting sandbox [worker #0, session #spjef]\n',
'2021-12-06T16:31:52.007Z nodeRunner Preparing sandbox [worker #0, session #spjef]\n',
'2021-12-06T16:31:52.007Z nodeRunner Prepared sandbox [worker #0, session #spjef]\n',
'2021-12-06T16:31:52.007Z workers [worker #0, session #spjef] Running tests in sandbox\n',
'2021-12-06T16:31:52.393Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:52.393Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:52.393Z project Test run was cancelled\n',
'2021-12-06T16:31:52.793Z workers Scheduling Jest Test Run (spjef): 2021-12-06T16:31:52.278Z\n',
'2021-12-06T16:31:52.858Z workers [spjef] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:52.858Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:52.858Z project Test run finished\n',
'2021-12-06T16:31:52.858Z project Test run data re-queued\n',
'2021-12-06T16:31:52.906Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:52.907Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:52.907Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:52.907Z nodeRunner Starting sandbox [worker #0, session #um9r4]\n',
'2021-12-06T16:31:52.907Z nodeRunner Preparing sandbox [worker #0, session #um9r4]\n',
'2021-12-06T16:31:52.907Z nodeRunner Prepared sandbox [worker #0, session #um9r4]\n',
'2021-12-06T16:31:52.907Z workers [worker #0, session #um9r4] Running tests in sandbox\n',
'2021-12-06T16:31:53.381Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:53.381Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:53.381Z project Test run was cancelled\n',
'2021-12-06T16:31:53.382Z workers Scheduling Jest Test Run (um9r4): 2021-12-06T16:31:52.909Z\n',
'2021-12-06T16:31:53.512Z workers [um9r4] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:53.513Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:53.513Z project Test run finished\n',
'2021-12-06T16:31:53.513Z project Test run data re-queued\n',
'2021-12-06T16:31:53.525Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:53.532Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:53.532Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:53.532Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:53.533Z nodeRunner Starting sandbox [worker #0, session #js1bj]\n',
'2021-12-06T16:31:53.533Z nodeRunner Preparing sandbox [worker #0, session #js1bj]\n',
'2021-12-06T16:31:53.533Z nodeRunner Prepared sandbox [worker #0, session #js1bj]\n',
'2021-12-06T16:31:53.533Z workers [worker #0, session #js1bj] Running tests in sandbox\n',
'2021-12-06T16:31:53.846Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:53.847Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:53.847Z project Test run was cancelled\n',
'2021-12-06T16:31:54.075Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:54.075Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:54.075Z project Test run was cancelled\n',
'2021-12-06T16:31:54.133Z workers Scheduling Jest Test Run (js1bj): 2021-12-06T16:31:53.539Z\n',
'2021-12-06T16:31:54.169Z workers [js1bj] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:54.169Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:54.169Z project Test run finished\n',
'2021-12-06T16:31:54.169Z project Test run data re-queued\n',
'2021-12-06T16:31:54.181Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:54.181Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:54.181Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:54.181Z nodeRunner Starting sandbox [worker #0, session #y5ee5]\n',
'2021-12-06T16:31:54.182Z nodeRunner Preparing sandbox [worker #0, session #y5ee5]\n',
'2021-12-06T16:31:54.182Z nodeRunner Prepared sandbox [worker #0, session #y5ee5]\n',
'2021-12-06T16:31:54.182Z workers [worker #0, session #y5ee5] Running tests in sandbox\n',
'2021-12-06T16:31:54.505Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:54.506Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:54.506Z project Test run was cancelled\n',
'2021-12-06T16:31:54.730Z workers Scheduling Jest Test Run (y5ee5): 2021-12-06T16:31:54.230Z\n',
'2021-12-06T16:31:54.811Z workers [y5ee5] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:54.811Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:54.811Z project Test run finished\n',
'2021-12-06T16:31:54.811Z project Test run data re-queued\n',
'2021-12-06T16:31:54.904Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:54.905Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:54.906Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:54.906Z nodeRunner Starting sandbox [worker #0, session #pmwkp]\n',
'2021-12-06T16:31:54.906Z nodeRunner Preparing sandbox [worker #0, session #pmwkp]\n',
'2021-12-06T16:31:54.906Z nodeRunner Prepared sandbox [worker #0, session #pmwkp]\n',
'2021-12-06T16:31:54.906Z workers [worker #0, session #pmwkp] Running tests in sandbox\n',
'2021-12-06T16:31:54.979Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:54.980Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:54.980Z project Test run was cancelled\n',
'2021-12-06T16:31:55.194Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:55.195Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:55.195Z project Test run was cancelled\n',
'2021-12-06T16:31:55.288Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:55.288Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:55.288Z project Test run was cancelled\n',
'2021-12-06T16:31:55.424Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:55.424Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:55.424Z project Test run was cancelled\n',
'2021-12-06T16:31:55.595Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:55.596Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:55.596Z project Test run was cancelled\n',
'2021-12-06T16:31:55.793Z workers Scheduling Jest Test Run (pmwkp): 2021-12-06T16:31:54.999Z\n',
'2021-12-06T16:31:56.024Z workers [pmwkp] Sandbox is responsive, closing it\n',
'2021-12-06T16:31:56.024Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:31:56.024Z project Test run finished\n',
'2021-12-06T16:31:56.025Z project Test run data re-queued\n',
'2021-12-06T16:31:56.088Z project Test run started; run priority: 2\n',
'2021-12-06T16:31:56.089Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:31:56.089Z workers Starting test run, priority: 2\n',
'2021-12-06T16:31:56.090Z nodeRunner Starting sandbox [worker #0, session #wajnu]\n',
'2021-12-06T16:31:56.090Z nodeRunner Preparing sandbox [worker #0, session #wajnu]\n',
'2021-12-06T16:31:56.090Z nodeRunner Prepared sandbox [worker #0, session #wajnu]\n',
'2021-12-06T16:31:56.090Z workers [worker #0, session #wajnu] Running tests in sandbox\n',
'2021-12-06T16:31:56.184Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:56.185Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:56.185Z project Test run was cancelled\n',
'2021-12-06T16:31:56.323Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:56.324Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:56.324Z project Test run was cancelled\n',
'2021-12-06T16:31:56.384Z nodeRunner Error while processing STDERR message: Unexpected token / in JSON at position 635\n',
'2021-12-06T16:31:56.542Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:56.543Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:56.543Z project Test run was cancelled\n',
'2021-12-06T16:31:56.648Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:56.649Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:56.649Z project Test run was cancelled\n',
'2021-12-06T16:31:56.876Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:56.876Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:56.876Z project Test run was cancelled\n',
'2021-12-06T16:31:57.120Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:57.121Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:57.121Z project Test run was cancelled\n',
'2021-12-06T16:31:57.638Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:57.639Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:57.639Z project Test run was cancelled\n',
'2021-12-06T16:31:57.861Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:57.862Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:57.862Z project Test run was cancelled\n',
'2021-12-06T16:31:58.051Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:58.052Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:58.052Z project Test run was cancelled\n',
'2021-12-06T16:31:58.154Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:58.155Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:58.155Z project Test run was cancelled\n',
'2021-12-06T16:31:58.326Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:58.326Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:58.578Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:58.578Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:58.578Z project Test run was cancelled\n',
'2021-12-06T16:31:58.848Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:58.848Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:58.848Z project Test run was cancelled\n',
'2021-12-06T16:31:59.109Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:59.109Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:59.109Z project Test run was cancelled\n',
'2021-12-06T16:31:59.272Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:59.272Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:59.272Z project Test run was cancelled\n',
'2021-12-06T16:31:59.446Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:59.446Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:59.446Z project Test run was cancelled\n',
'2021-12-06T16:31:59.648Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:59.649Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:59.649Z project Test run was cancelled\n',
'2021-12-06T16:31:59.869Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:31:59.869Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:31:59.869Z project Test run was cancelled\n',
'2021-12-06T16:32:00.105Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:00.105Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:00.105Z project Test run was cancelled\n',
'2021-12-06T16:32:00.358Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:00.358Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:00.358Z project Test run was cancelled\n',
'2021-12-06T16:32:00.518Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:00.518Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:00.518Z project Test run was cancelled\n',
'2021-12-06T16:32:00.685Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:00.686Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:00.686Z project Test run was cancelled\n',
'2021-12-06T16:32:00.829Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:00.829Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:01.115Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:01.116Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:01.116Z project Test run was cancelled\n',
'2021-12-06T16:32:02.075Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:02.076Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:02.076Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:32:03.185Z workers [wajnu] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:32:03.185Z workers [wajnu] Sandbox closing error, not opened\n',
'2021-12-06T16:32:03.185Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:03.185Z project Test run finished\n',
'2021-12-06T16:32:03.185Z project Test run data re-queued\n',
'2021-12-06T16:32:03.194Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:03.194Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:03.194Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:03.194Z nodeRunner Starting sandbox [worker #0, session #hcwtm]\n',
'2021-12-06T16:32:03.194Z nodeRunner Preparing sandbox [worker #0, session #hcwtm]\n',
'2021-12-06T16:32:03.194Z workers Starting run worker instance #0\n',
'2021-12-06T16:32:03.336Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:32:03.337Z nodeRunner Prepared sandbox [worker #0, session #hcwtm]\n',
'2021-12-06T16:32:03.337Z workers [worker #0, session #hcwtm] Running tests in sandbox\n',
'2021-12-06T16:32:06.332Z workers Scheduling Jest Test Run (hcwtm): 2021-12-06T16:32:03.943Z\n',
'2021-12-06T16:32:06.350Z workers [hcwtm] Loaded unknown number of test(s)\n',
'2021-12-06T16:32:07.363Z workers [hcwtm] Test executed: will compile a valid script\n',
'2021-12-06T16:32:07.958Z workers [hcwtm] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:32:08.807Z workers [hcwtm] Test executed: will fail an invalid script\n',
'2021-12-06T16:32:09.627Z workers [hcwtm] Test executed: will fail when accessing a unshared node global\n',
'2021-12-06T16:32:09.632Z workers [hcwtm] Test executed: will respond with a page on root\n',
'2021-12-06T16:32:09.661Z workers [hcwtm] Test executed: will respond with a version number on /version\n',
'2021-12-06T16:32:09.666Z workers [hcwtm] Run 6 test(s), skipped 0 test(s)\n',
'2021-12-06T16:32:09.666Z workers Jest Test Run Complete (hcwtm): 2021-12-06T16:32:09.658Z\n',
'2021-12-06T16:32:09.668Z workers [hcwtm] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:09.668Z project Test run finished\n',
'2021-12-06T16:32:09.669Z project Processed console.log entries\n',
'2021-12-06T16:32:09.669Z project Processed loading sequences\n',
'2021-12-06T16:32:09.669Z project Processed executed tests\n',
'2021-12-06T16:32:09.670Z project Processed code coverage\n',
'2021-12-06T16:32:09.677Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:32:48.736Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:48.741Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:48.741Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:48.742Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:48.742Z nodeRunner Starting sandbox [worker #0, session #9aupo]\n',
'2021-12-06T16:32:48.742Z nodeRunner Preparing sandbox [worker #0, session #9aupo]\n',
'2021-12-06T16:32:48.742Z nodeRunner Prepared sandbox [worker #0, session #9aupo]\n',
'2021-12-06T16:32:48.742Z workers [worker #0, session #9aupo] Running tests in sandbox\n',
'2021-12-06T16:32:49.189Z workers Scheduling Jest Test Run (9aupo): 2021-12-06T16:32:48.745Z\n',
'2021-12-06T16:32:49.211Z workers [9aupo] Loaded unknown number of test(s)\n',
'2021-12-06T16:32:49.293Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:49.293Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:49.293Z project Test run was cancelled\n',
'2021-12-06T16:32:49.307Z workers [9aupo] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:49.308Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:49.308Z project Test run finished\n',
'2021-12-06T16:32:49.308Z project Test run data re-queued\n',
'2021-12-06T16:32:49.354Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:49.354Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:49.358Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:49.358Z nodeRunner Starting sandbox [worker #0, session #x459y]\n',
'2021-12-06T16:32:49.358Z nodeRunner Preparing sandbox [worker #0, session #x459y]\n',
'2021-12-06T16:32:49.358Z nodeRunner Prepared sandbox [worker #0, session #x459y]\n',
'2021-12-06T16:32:49.358Z workers [worker #0, session #x459y] Running tests in sandbox\n',
'2021-12-06T16:32:49.396Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:49.396Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:49.396Z project Test run was cancelled\n',
'2021-12-06T16:32:49.706Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:49.707Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:49.707Z project Test run was cancelled\n',
'2021-12-06T16:32:49.829Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:49.830Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:49.830Z project Test run was cancelled\n',
'2021-12-06T16:32:50.104Z workers Scheduling Jest Test Run (x459y): 2021-12-06T16:32:49.363Z\n',
'2021-12-06T16:32:50.112Z workers Jest Test Run Complete (x459y): 2021-12-06T16:32:50.090Z\n',
'2021-12-06T16:32:50.112Z workers [x459y] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:50.113Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:50.113Z project Test run finished\n',
'2021-12-06T16:32:50.113Z project Test run data re-queued\n',
'2021-12-06T16:32:50.142Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:50.142Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:50.143Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:50.144Z nodeRunner Starting sandbox [worker #0, session #76h6x]\n',
'2021-12-06T16:32:50.147Z nodeRunner Preparing sandbox [worker #0, session #76h6x]\n',
'2021-12-06T16:32:50.147Z nodeRunner Prepared sandbox [worker #0, session #76h6x]\n',
'2021-12-06T16:32:50.147Z workers [worker #0, session #76h6x] Running tests in sandbox\n',
'2021-12-06T16:32:50.231Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:50.232Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:50.232Z project Test run was cancelled\n',
'2021-12-06T16:32:50.377Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:50.377Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:50.377Z project Test run was cancelled\n',
'2021-12-06T16:32:50.554Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:50.554Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:50.554Z project Test run was cancelled\n',
'2021-12-06T16:32:50.606Z workers Scheduling Jest Test Run (76h6x): 2021-12-06T16:32:50.150Z\n',
'2021-12-06T16:32:50.647Z workers Jest Test Run Complete (76h6x): 2021-12-06T16:32:50.603Z\n',
'2021-12-06T16:32:50.648Z workers [76h6x] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:50.648Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:50.648Z project Test run finished\n',
'2021-12-06T16:32:50.648Z project Test run data re-queued\n',
'2021-12-06T16:32:50.661Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:50.661Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:50.661Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:50.661Z nodeRunner Starting sandbox [worker #0, session #1lkyk]\n',
'2021-12-06T16:32:50.661Z nodeRunner Preparing sandbox [worker #0, session #1lkyk]\n',
'2021-12-06T16:32:50.661Z nodeRunner Prepared sandbox [worker #0, session #1lkyk]\n',
'2021-12-06T16:32:50.661Z workers [worker #0, session #1lkyk] Running tests in sandbox\n',
'2021-12-06T16:32:50.674Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:50.674Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:50.674Z project Test run was cancelled\n',
'2021-12-06T16:32:50.821Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:50.822Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:50.822Z project Test run was cancelled\n',
'2021-12-06T16:32:51.055Z workers Scheduling Jest Test Run (1lkyk): 2021-12-06T16:32:50.664Z\n',
'2021-12-06T16:32:51.063Z workers Jest Test Run Complete (1lkyk): 2021-12-06T16:32:51.053Z\n',
'2021-12-06T16:32:51.063Z workers [1lkyk] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:51.063Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:51.063Z project Test run finished\n',
'2021-12-06T16:32:51.063Z project Test run data re-queued\n',
'2021-12-06T16:32:51.079Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:51.079Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:51.080Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:51.080Z nodeRunner Starting sandbox [worker #0, session #9wxwa]\n',
'2021-12-06T16:32:51.080Z nodeRunner Preparing sandbox [worker #0, session #9wxwa]\n',
'2021-12-06T16:32:51.080Z nodeRunner Prepared sandbox [worker #0, session #9wxwa]\n',
'2021-12-06T16:32:51.080Z workers [worker #0, session #9wxwa] Running tests in sandbox\n',
'2021-12-06T16:32:51.351Z workers Scheduling Jest Test Run (9wxwa): 2021-12-06T16:32:51.082Z\n',
'2021-12-06T16:32:51.359Z workers Sandbox (active) [9wxwa] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:32:51.380Z workers [9wxwa] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:32:51.381Z workers Jest Test Run Complete (9wxwa): 2021-12-06T16:32:51.348Z\n',
'2021-12-06T16:32:51.386Z workers [9wxwa] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:51.388Z project Test run finished\n',
'2021-12-06T16:32:51.388Z project Processed console.log entries\n',
'2021-12-06T16:32:51.388Z project Processed loading sequences\n',
'2021-12-06T16:32:51.388Z project Processed executed tests\n',
'2021-12-06T16:32:51.391Z project Processed code coverage\n',
'2021-12-06T16:32:51.401Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:32:51.706Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:51.708Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:51.708Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:32:52.554Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:52.561Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:52.561Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:52.562Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:52.562Z nodeRunner Starting sandbox [worker #0, session #c8oay]\n',
'2021-12-06T16:32:52.562Z nodeRunner Preparing sandbox [worker #0, session #c8oay]\n',
'2021-12-06T16:32:52.562Z nodeRunner Prepared sandbox [worker #0, session #c8oay]\n',
'2021-12-06T16:32:52.562Z workers [worker #0, session #c8oay] Running tests in sandbox\n',
'2021-12-06T16:32:52.714Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:52.714Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:52.714Z project Test run was cancelled\n',
'2021-12-06T16:32:52.947Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:52.948Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:52.948Z project Test run was cancelled\n',
'2021-12-06T16:32:53.029Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:53.029Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:53.029Z project Test run was cancelled\n',
'2021-12-06T16:32:53.048Z workers Scheduling Jest Test Run (c8oay): 2021-12-06T16:32:52.565Z\n',
'2021-12-06T16:32:53.054Z workers Jest Test Run Complete (c8oay): 2021-12-06T16:32:53.046Z\n',
'2021-12-06T16:32:53.054Z workers [c8oay] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:53.055Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:53.055Z project Test run finished\n',
'2021-12-06T16:32:53.055Z project Test run data re-queued\n',
'2021-12-06T16:32:53.086Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:53.087Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:53.087Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:53.087Z nodeRunner Starting sandbox [worker #0, session #xudxg]\n',
'2021-12-06T16:32:53.087Z nodeRunner Preparing sandbox [worker #0, session #xudxg]\n',
'2021-12-06T16:32:53.087Z nodeRunner Prepared sandbox [worker #0, session #xudxg]\n',
'2021-12-06T16:32:53.087Z workers [worker #0, session #xudxg] Running tests in sandbox\n',
'2021-12-06T16:32:53.311Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:53.311Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:53.311Z project Test run was cancelled\n',
'2021-12-06T16:32:53.453Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:53.453Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:53.453Z project Test run was cancelled\n',
'2021-12-06T16:32:53.462Z workers Scheduling Jest Test Run (xudxg): 2021-12-06T16:32:53.089Z\n',
'2021-12-06T16:32:53.470Z workers Jest Test Run Complete (xudxg): 2021-12-06T16:32:53.456Z\n',
'2021-12-06T16:32:53.471Z workers [xudxg] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:53.472Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:53.472Z project Test run finished\n',
'2021-12-06T16:32:53.472Z project Test run data re-queued\n',
'2021-12-06T16:32:53.510Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:53.511Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:53.511Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:53.511Z nodeRunner Starting sandbox [worker #0, session #4bbi1]\n',
'2021-12-06T16:32:53.511Z nodeRunner Preparing sandbox [worker #0, session #4bbi1]\n',
'2021-12-06T16:32:53.511Z nodeRunner Prepared sandbox [worker #0, session #4bbi1]\n',
'2021-12-06T16:32:53.511Z workers [worker #0, session #4bbi1] Running tests in sandbox\n',
'2021-12-06T16:32:53.694Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:53.695Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:53.695Z project Test run was cancelled\n',
'2021-12-06T16:32:53.826Z workers Scheduling Jest Test Run (4bbi1): 2021-12-06T16:32:53.514Z\n',
'2021-12-06T16:32:53.832Z workers Jest Test Run Complete (4bbi1): 2021-12-06T16:32:53.824Z\n',
'2021-12-06T16:32:53.832Z workers [4bbi1] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:53.832Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:53.832Z project Test run finished\n',
'2021-12-06T16:32:53.832Z project Test run data re-queued\n',
'2021-12-06T16:32:53.851Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:53.851Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:53.852Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:53.852Z nodeRunner Starting sandbox [worker #0, session #4vtnt]\n',
'2021-12-06T16:32:53.852Z nodeRunner Preparing sandbox [worker #0, session #4vtnt]\n',
'2021-12-06T16:32:53.852Z nodeRunner Prepared sandbox [worker #0, session #4vtnt]\n',
'2021-12-06T16:32:53.852Z workers [worker #0, session #4vtnt] Running tests in sandbox\n',
'2021-12-06T16:32:53.999Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:53.999Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:53.999Z project Test run was cancelled\n',
'2021-12-06T16:32:54.130Z workers Scheduling Jest Test Run (4vtnt): 2021-12-06T16:32:53.854Z\n',
'2021-12-06T16:32:54.138Z workers Jest Test Run Complete (4vtnt): 2021-12-06T16:32:54.129Z\n',
'2021-12-06T16:32:54.139Z workers [4vtnt] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:54.139Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:54.139Z project Test run finished\n',
'2021-12-06T16:32:54.139Z project Test run data re-queued\n',
'2021-12-06T16:32:54.153Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:54.153Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:54.153Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:54.153Z nodeRunner Starting sandbox [worker #0, session #fdfjr]\n',
'2021-12-06T16:32:54.153Z nodeRunner Preparing sandbox [worker #0, session #fdfjr]\n',
'2021-12-06T16:32:54.153Z nodeRunner Prepared sandbox [worker #0, session #fdfjr]\n',
'2021-12-06T16:32:54.153Z workers [worker #0, session #fdfjr] Running tests in sandbox\n',
'2021-12-06T16:32:54.403Z workers Scheduling Jest Test Run (fdfjr): 2021-12-06T16:32:54.155Z\n',
'2021-12-06T16:32:54.410Z workers Sandbox (active) [fdfjr] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:32:54.413Z workers [fdfjr] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:32:54.414Z workers Jest Test Run Complete (fdfjr): 2021-12-06T16:32:54.399Z\n',
'2021-12-06T16:32:54.415Z workers [fdfjr] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:54.416Z project Test run finished\n',
'2021-12-06T16:32:54.416Z project Processed console.log entries\n',
'2021-12-06T16:32:54.416Z project Processed loading sequences\n',
'2021-12-06T16:32:54.416Z project Processed executed tests\n',
'2021-12-06T16:32:54.416Z project Processed code coverage\n',
'2021-12-06T16:32:54.420Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:32:55.010Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:55.012Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:55.012Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:32:55.721Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:55.728Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:55.728Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:55.728Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:55.729Z nodeRunner Starting sandbox [worker #0, session #v5dk3]\n',
'2021-12-06T16:32:55.729Z nodeRunner Preparing sandbox [worker #0, session #v5dk3]\n',
'2021-12-06T16:32:55.729Z nodeRunner Prepared sandbox [worker #0, session #v5dk3]\n',
'2021-12-06T16:32:55.729Z workers [worker #0, session #v5dk3] Running tests in sandbox\n',
'2021-12-06T16:32:55.851Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:55.851Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:55.851Z project Test run was cancelled\n',
'2021-12-06T16:32:56.070Z workers Scheduling Jest Test Run (v5dk3): 2021-12-06T16:32:55.731Z\n',
'2021-12-06T16:32:56.077Z workers Jest Test Run Complete (v5dk3): 2021-12-06T16:32:56.067Z\n',
'2021-12-06T16:32:56.077Z workers [v5dk3] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:56.077Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:56.077Z project Test run finished\n',
'2021-12-06T16:32:56.077Z project Test run data re-queued\n',
'2021-12-06T16:32:56.117Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:56.117Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:56.117Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:56.117Z nodeRunner Starting sandbox [worker #0, session #lp54h]\n',
'2021-12-06T16:32:56.117Z nodeRunner Preparing sandbox [worker #0, session #lp54h]\n',
'2021-12-06T16:32:56.117Z nodeRunner Prepared sandbox [worker #0, session #lp54h]\n',
'2021-12-06T16:32:56.117Z workers [worker #0, session #lp54h] Running tests in sandbox\n',
'2021-12-06T16:32:56.177Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:56.177Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:56.177Z project Test run was cancelled\n',
'2021-12-06T16:32:56.370Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:56.371Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:56.371Z project Test run was cancelled\n',
'2021-12-06T16:32:56.438Z workers Scheduling Jest Test Run (lp54h): 2021-12-06T16:32:56.120Z\n',
'2021-12-06T16:32:56.446Z workers Jest Test Run Complete (lp54h): 2021-12-06T16:32:56.435Z\n',
'2021-12-06T16:32:56.446Z workers [lp54h] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:56.446Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:56.446Z project Test run finished\n',
'2021-12-06T16:32:56.446Z project Test run data re-queued\n',
'2021-12-06T16:32:56.477Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:56.477Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:56.477Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:56.477Z nodeRunner Starting sandbox [worker #0, session #jlrgn]\n',
'2021-12-06T16:32:56.477Z nodeRunner Preparing sandbox [worker #0, session #jlrgn]\n',
'2021-12-06T16:32:56.477Z nodeRunner Prepared sandbox [worker #0, session #jlrgn]\n',
'2021-12-06T16:32:56.477Z workers [worker #0, session #jlrgn] Running tests in sandbox\n',
'2021-12-06T16:32:56.687Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:56.688Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:56.688Z project Test run was cancelled\n',
'2021-12-06T16:32:56.799Z workers Scheduling Jest Test Run (jlrgn): 2021-12-06T16:32:56.480Z\n',
'2021-12-06T16:32:56.809Z workers Jest Test Run Complete (jlrgn): 2021-12-06T16:32:56.785Z\n',
'2021-12-06T16:32:56.809Z workers [jlrgn] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:56.810Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:56.810Z project Test run finished\n',
'2021-12-06T16:32:56.810Z project Test run data re-queued\n',
'2021-12-06T16:32:56.844Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:56.844Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:56.844Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:56.844Z nodeRunner Starting sandbox [worker #0, session #nffpr]\n',
'2021-12-06T16:32:56.844Z nodeRunner Preparing sandbox [worker #0, session #nffpr]\n',
'2021-12-06T16:32:56.844Z nodeRunner Prepared sandbox [worker #0, session #nffpr]\n',
'2021-12-06T16:32:56.844Z workers [worker #0, session #nffpr] Running tests in sandbox\n',
'2021-12-06T16:32:57.005Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:57.006Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:57.006Z project Test run was cancelled\n',
'2021-12-06T16:32:57.147Z workers Scheduling Jest Test Run (nffpr): 2021-12-06T16:32:56.847Z\n',
'2021-12-06T16:32:57.154Z workers Jest Test Run Complete (nffpr): 2021-12-06T16:32:57.145Z\n',
'2021-12-06T16:32:57.155Z workers [nffpr] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:57.155Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:57.155Z project Test run finished\n',
'2021-12-06T16:32:57.155Z project Test run data re-queued\n',
'2021-12-06T16:32:57.162Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:57.162Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:57.163Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:57.163Z nodeRunner Starting sandbox [worker #0, session #d89qy]\n',
'2021-12-06T16:32:57.163Z nodeRunner Preparing sandbox [worker #0, session #d89qy]\n',
'2021-12-06T16:32:57.163Z nodeRunner Prepared sandbox [worker #0, session #d89qy]\n',
'2021-12-06T16:32:57.163Z workers [worker #0, session #d89qy] Running tests in sandbox\n',
'2021-12-06T16:32:57.385Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:57.385Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:57.385Z project Test run was cancelled\n',
'2021-12-06T16:32:57.417Z workers Scheduling Jest Test Run (d89qy): 2021-12-06T16:32:57.165Z\n',
'2021-12-06T16:32:57.423Z workers Jest Test Run Complete (d89qy): 2021-12-06T16:32:57.415Z\n',
'2021-12-06T16:32:57.424Z workers [d89qy] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:57.424Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:57.424Z project Test run finished\n',
'2021-12-06T16:32:57.424Z project Test run data re-queued\n',
'2021-12-06T16:32:57.442Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:57.443Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:57.443Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:57.443Z nodeRunner Starting sandbox [worker #0, session #kkoup]\n',
'2021-12-06T16:32:57.443Z nodeRunner Preparing sandbox [worker #0, session #kkoup]\n',
'2021-12-06T16:32:57.443Z nodeRunner Prepared sandbox [worker #0, session #kkoup]\n',
'2021-12-06T16:32:57.443Z workers [worker #0, session #kkoup] Running tests in sandbox\n',
'2021-12-06T16:32:57.622Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:57.623Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:57.623Z project Test run was cancelled\n',
'2021-12-06T16:32:57.725Z workers Scheduling Jest Test Run (kkoup): 2021-12-06T16:32:57.445Z\n',
'2021-12-06T16:32:57.730Z workers Jest Test Run Complete (kkoup): 2021-12-06T16:32:57.720Z\n',
'2021-12-06T16:32:57.731Z workers [kkoup] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:57.731Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:57.731Z project Test run finished\n',
'2021-12-06T16:32:57.731Z project Test run data re-queued\n',
'2021-12-06T16:32:57.779Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:57.779Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:57.779Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:57.779Z nodeRunner Starting sandbox [worker #0, session #vw0u9]\n',
'2021-12-06T16:32:57.779Z nodeRunner Preparing sandbox [worker #0, session #vw0u9]\n',
'2021-12-06T16:32:57.779Z nodeRunner Prepared sandbox [worker #0, session #vw0u9]\n',
'2021-12-06T16:32:57.779Z workers [worker #0, session #vw0u9] Running tests in sandbox\n',
'2021-12-06T16:32:57.958Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:57.958Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:57.958Z project Test run was cancelled\n',
'2021-12-06T16:32:58.036Z workers Scheduling Jest Test Run (vw0u9): 2021-12-06T16:32:57.782Z\n',
'2021-12-06T16:32:58.042Z workers Jest Test Run Complete (vw0u9): 2021-12-06T16:32:58.034Z\n',
'2021-12-06T16:32:58.043Z workers [vw0u9] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:58.043Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:58.043Z project Test run finished\n',
'2021-12-06T16:32:58.043Z project Test run data re-queued\n',
'2021-12-06T16:32:58.062Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:58.062Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:58.063Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:58.063Z nodeRunner Starting sandbox [worker #0, session #rjl6h]\n',
'2021-12-06T16:32:58.063Z nodeRunner Preparing sandbox [worker #0, session #rjl6h]\n',
'2021-12-06T16:32:58.063Z nodeRunner Prepared sandbox [worker #0, session #rjl6h]\n',
'2021-12-06T16:32:58.063Z workers [worker #0, session #rjl6h] Running tests in sandbox\n',
'2021-12-06T16:32:58.304Z workers Scheduling Jest Test Run (rjl6h): 2021-12-06T16:32:58.064Z\n',
'2021-12-06T16:32:58.307Z workers Sandbox (active) [rjl6h] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:32:58.311Z workers [rjl6h] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:32:58.311Z workers Jest Test Run Complete (rjl6h): 2021-12-06T16:32:58.303Z\n',
'2021-12-06T16:32:58.313Z workers [rjl6h] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:58.313Z project Test run finished\n',
'2021-12-06T16:32:58.313Z project Processed console.log entries\n',
'2021-12-06T16:32:58.313Z project Processed loading sequences\n',
'2021-12-06T16:32:58.313Z project Processed executed tests\n',
'2021-12-06T16:32:58.313Z project Processed code coverage\n',
'2021-12-06T16:32:58.316Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:32:58.524Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:58.528Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:58.528Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:58.529Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:58.529Z nodeRunner Starting sandbox [worker #0, session #hdfsd]\n',
'2021-12-06T16:32:58.529Z nodeRunner Preparing sandbox [worker #0, session #hdfsd]\n',
'2021-12-06T16:32:58.529Z nodeRunner Prepared sandbox [worker #0, session #hdfsd]\n',
'2021-12-06T16:32:58.529Z workers [worker #0, session #hdfsd] Running tests in sandbox\n',
'2021-12-06T16:32:58.783Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:58.784Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:58.784Z project Test run was cancelled\n',
'2021-12-06T16:32:58.785Z workers Scheduling Jest Test Run (hdfsd): 2021-12-06T16:32:58.531Z\n',
'2021-12-06T16:32:58.793Z workers Jest Test Run Complete (hdfsd): 2021-12-06T16:32:58.779Z\n',
'2021-12-06T16:32:58.794Z workers [hdfsd] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:58.794Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:58.794Z project Test run finished\n',
'2021-12-06T16:32:58.794Z project Test run data re-queued\n',
'2021-12-06T16:32:58.843Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:58.843Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:58.845Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:58.845Z nodeRunner Starting sandbox [worker #0, session #238u7]\n',
'2021-12-06T16:32:58.845Z nodeRunner Preparing sandbox [worker #0, session #238u7]\n',
'2021-12-06T16:32:58.845Z nodeRunner Prepared sandbox [worker #0, session #238u7]\n',
'2021-12-06T16:32:58.845Z workers [worker #0, session #238u7] Running tests in sandbox\n',
'2021-12-06T16:32:58.922Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:58.922Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:58.922Z project Test run was cancelled\n',
'2021-12-06T16:32:59.120Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:59.120Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:59.120Z project Test run was cancelled\n',
'2021-12-06T16:32:59.161Z workers Scheduling Jest Test Run (238u7): 2021-12-06T16:32:58.849Z\n',
'2021-12-06T16:32:59.167Z workers Jest Test Run Complete (238u7): 2021-12-06T16:32:59.159Z\n',
'2021-12-06T16:32:59.168Z workers [238u7] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:59.168Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:59.168Z project Test run finished\n',
'2021-12-06T16:32:59.168Z project Test run data re-queued\n',
'2021-12-06T16:32:59.177Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:59.177Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:59.178Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:59.178Z nodeRunner Starting sandbox [worker #0, session #r73ff]\n',
'2021-12-06T16:32:59.178Z nodeRunner Preparing sandbox [worker #0, session #r73ff]\n',
'2021-12-06T16:32:59.178Z nodeRunner Prepared sandbox [worker #0, session #r73ff]\n',
'2021-12-06T16:32:59.178Z workers [worker #0, session #r73ff] Running tests in sandbox\n',
'2021-12-06T16:32:59.357Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:59.357Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:59.357Z project Test run was cancelled\n',
'2021-12-06T16:32:59.456Z workers Scheduling Jest Test Run (r73ff): 2021-12-06T16:32:59.180Z\n',
'2021-12-06T16:32:59.461Z workers Jest Test Run Complete (r73ff): 2021-12-06T16:32:59.454Z\n',
'2021-12-06T16:32:59.462Z workers [r73ff] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:59.462Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:59.462Z project Test run finished\n',
'2021-12-06T16:32:59.462Z project Test run data re-queued\n',
'2021-12-06T16:32:59.487Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:59.492Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:59.492Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:59.492Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:59.492Z nodeRunner Starting sandbox [worker #0, session #b7sbq]\n',
'2021-12-06T16:32:59.492Z nodeRunner Preparing sandbox [worker #0, session #b7sbq]\n',
'2021-12-06T16:32:59.492Z nodeRunner Prepared sandbox [worker #0, session #b7sbq]\n',
'2021-12-06T16:32:59.492Z workers [worker #0, session #b7sbq] Running tests in sandbox\n',
'2021-12-06T16:32:59.725Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:59.726Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:59.726Z project Test run was cancelled\n',
'2021-12-06T16:32:59.791Z workers Scheduling Jest Test Run (b7sbq): 2021-12-06T16:32:59.494Z\n',
'2021-12-06T16:32:59.799Z workers Jest Test Run Complete (b7sbq): 2021-12-06T16:32:59.790Z\n',
'2021-12-06T16:32:59.800Z workers [b7sbq] Sandbox is responsive, closing it\n',
'2021-12-06T16:32:59.800Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:32:59.800Z project Test run finished\n',
'2021-12-06T16:32:59.800Z project Test run data re-queued\n',
'2021-12-06T16:32:59.831Z project Test run started; run priority: 2\n',
'2021-12-06T16:32:59.831Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:32:59.831Z workers Starting test run, priority: 2\n',
'2021-12-06T16:32:59.831Z nodeRunner Starting sandbox [worker #0, session #7jdof]\n',
'2021-12-06T16:32:59.831Z nodeRunner Preparing sandbox [worker #0, session #7jdof]\n',
'2021-12-06T16:32:59.831Z nodeRunner Prepared sandbox [worker #0, session #7jdof]\n',
'2021-12-06T16:32:59.831Z workers [worker #0, session #7jdof] Running tests in sandbox\n',
'2021-12-06T16:32:59.906Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:32:59.907Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:32:59.907Z project Test run was cancelled\n',
'2021-12-06T16:33:00.095Z workers Scheduling Jest Test Run (7jdof): 2021-12-06T16:32:59.833Z\n',
'2021-12-06T16:33:00.101Z workers Jest Test Run Complete (7jdof): 2021-12-06T16:33:00.093Z\n',
'2021-12-06T16:33:00.101Z workers [7jdof] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:00.101Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:00.101Z project Test run finished\n',
'2021-12-06T16:33:00.101Z project Test run data re-queued\n',
'2021-12-06T16:33:00.115Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:00.115Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:00.115Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:00.115Z nodeRunner Starting sandbox [worker #0, session #nsf5n]\n',
'2021-12-06T16:33:00.115Z nodeRunner Preparing sandbox [worker #0, session #nsf5n]\n',
'2021-12-06T16:33:00.115Z nodeRunner Prepared sandbox [worker #0, session #nsf5n]\n',
'2021-12-06T16:33:00.115Z workers [worker #0, session #nsf5n] Running tests in sandbox\n',
'2021-12-06T16:33:00.326Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:00.327Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:00.327Z project Test run was cancelled\n',
'2021-12-06T16:33:00.401Z workers Scheduling Jest Test Run (nsf5n): 2021-12-06T16:33:00.117Z\n',
'2021-12-06T16:33:00.409Z workers Jest Test Run Complete (nsf5n): 2021-12-06T16:33:00.396Z\n',
'2021-12-06T16:33:00.409Z workers [nsf5n] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:00.410Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:00.410Z project Test run finished\n',
'2021-12-06T16:33:00.410Z project Test run data re-queued\n',
'2021-12-06T16:33:00.431Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:00.431Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:00.432Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:00.432Z nodeRunner Starting sandbox [worker #0, session #jnf0l]\n',
'2021-12-06T16:33:00.432Z nodeRunner Preparing sandbox [worker #0, session #jnf0l]\n',
'2021-12-06T16:33:00.432Z nodeRunner Prepared sandbox [worker #0, session #jnf0l]\n',
'2021-12-06T16:33:00.432Z workers [worker #0, session #jnf0l] Running tests in sandbox\n',
'2021-12-06T16:33:00.682Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:00.682Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:00.682Z project Test run was cancelled\n',
'2021-12-06T16:33:00.765Z workers Scheduling Jest Test Run (jnf0l): 2021-12-06T16:33:00.434Z\n',
'2021-12-06T16:33:00.771Z workers Jest Test Run Complete (jnf0l): 2021-12-06T16:33:00.763Z\n',
'2021-12-06T16:33:00.771Z workers [jnf0l] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:00.772Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:00.772Z project Test run finished\n',
'2021-12-06T16:33:00.772Z project Test run data re-queued\n',
'2021-12-06T16:33:00.789Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:00.789Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:00.789Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:00.789Z nodeRunner Starting sandbox [worker #0, session #znzv1]\n',
'2021-12-06T16:33:00.790Z nodeRunner Preparing sandbox [worker #0, session #znzv1]\n',
'2021-12-06T16:33:00.790Z nodeRunner Prepared sandbox [worker #0, session #znzv1]\n',
'2021-12-06T16:33:00.790Z workers [worker #0, session #znzv1] Running tests in sandbox\n',
'2021-12-06T16:33:00.804Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:00.805Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:00.805Z project Test run was cancelled\n',
'2021-12-06T16:33:00.938Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:00.939Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:00.939Z project Test run was cancelled\n',
'2021-12-06T16:33:01.094Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:01.094Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:01.094Z project Test run was cancelled\n',
'2021-12-06T16:33:01.134Z workers Scheduling Jest Test Run (znzv1): 2021-12-06T16:33:00.792Z\n',
'2021-12-06T16:33:01.146Z workers Jest Test Run Complete (znzv1): 2021-12-06T16:33:01.132Z\n',
'2021-12-06T16:33:01.147Z workers [znzv1] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:01.147Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:01.147Z project Test run finished\n',
'2021-12-06T16:33:01.147Z project Test run data re-queued\n',
'2021-12-06T16:33:01.203Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:01.203Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:01.203Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:01.203Z nodeRunner Starting sandbox [worker #0, session #c8f5r]\n',
'2021-12-06T16:33:01.203Z nodeRunner Preparing sandbox [worker #0, session #c8f5r]\n',
'2021-12-06T16:33:01.204Z nodeRunner Prepared sandbox [worker #0, session #c8f5r]\n',
'2021-12-06T16:33:01.204Z workers [worker #0, session #c8f5r] Running tests in sandbox\n',
'2021-12-06T16:33:01.208Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:01.208Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:01.208Z project Test run was cancelled\n',
'2021-12-06T16:33:01.465Z workers Scheduling Jest Test Run (c8f5r): 2021-12-06T16:33:01.207Z\n',
'2021-12-06T16:33:01.471Z workers Jest Test Run Complete (c8f5r): 2021-12-06T16:33:01.463Z\n',
'2021-12-06T16:33:01.471Z workers [c8f5r] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:01.471Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:01.471Z project Test run finished\n',
'2021-12-06T16:33:01.471Z project Test run data re-queued\n',
'2021-12-06T16:33:01.518Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:01.518Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:01.519Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:01.519Z nodeRunner Starting sandbox [worker #0, session #jvwrs]\n',
'2021-12-06T16:33:01.519Z nodeRunner Preparing sandbox [worker #0, session #jvwrs]\n',
'2021-12-06T16:33:01.519Z nodeRunner Prepared sandbox [worker #0, session #jvwrs]\n',
'2021-12-06T16:33:01.519Z workers [worker #0, session #jvwrs] Running tests in sandbox\n',
'2021-12-06T16:33:01.602Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:01.602Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:01.602Z project Test run was cancelled\n',
'2021-12-06T16:33:01.799Z workers Scheduling Jest Test Run (jvwrs): 2021-12-06T16:33:01.529Z\n',
'2021-12-06T16:33:01.807Z workers Jest Test Run Complete (jvwrs): 2021-12-06T16:33:01.797Z\n',
'2021-12-06T16:33:01.809Z workers [jvwrs] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:01.810Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:01.810Z project Test run finished\n',
'2021-12-06T16:33:01.810Z project Test run data re-queued\n',
'2021-12-06T16:33:01.862Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:01.862Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:01.862Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:01.862Z nodeRunner Starting sandbox [worker #0, session #8g4lv]\n',
'2021-12-06T16:33:01.862Z nodeRunner Preparing sandbox [worker #0, session #8g4lv]\n',
'2021-12-06T16:33:01.862Z nodeRunner Prepared sandbox [worker #0, session #8g4lv]\n',
'2021-12-06T16:33:01.862Z workers [worker #0, session #8g4lv] Running tests in sandbox\n',
'2021-12-06T16:33:01.888Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:01.889Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:01.889Z project Test run was cancelled\n',
'2021-12-06T16:33:02.056Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:02.056Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:02.056Z project Test run was cancelled\n',
'2021-12-06T16:33:02.145Z workers Scheduling Jest Test Run (8g4lv): 2021-12-06T16:33:01.864Z\n',
'2021-12-06T16:33:02.155Z workers Jest Test Run Complete (8g4lv): 2021-12-06T16:33:02.135Z\n',
'2021-12-06T16:33:02.156Z workers [8g4lv] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:02.157Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:02.157Z project Test run finished\n',
'2021-12-06T16:33:02.157Z project Test run data re-queued\n',
'2021-12-06T16:33:02.163Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:02.163Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:02.164Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:02.164Z nodeRunner Starting sandbox [worker #0, session #tqkb1]\n',
'2021-12-06T16:33:02.164Z nodeRunner Preparing sandbox [worker #0, session #tqkb1]\n',
'2021-12-06T16:33:02.164Z nodeRunner Prepared sandbox [worker #0, session #tqkb1]\n',
'2021-12-06T16:33:02.164Z workers [worker #0, session #tqkb1] Running tests in sandbox\n',
'2021-12-06T16:33:02.270Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:02.270Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:02.270Z project Test run was cancelled\n',
'2021-12-06T16:33:02.442Z workers Scheduling Jest Test Run (tqkb1): 2021-12-06T16:33:02.166Z\n',
'2021-12-06T16:33:02.448Z workers Jest Test Run Complete (tqkb1): 2021-12-06T16:33:02.441Z\n',
'2021-12-06T16:33:02.449Z workers [tqkb1] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:02.449Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:02.449Z project Test run finished\n',
'2021-12-06T16:33:02.449Z project Test run data re-queued\n',
'2021-12-06T16:33:02.479Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:02.479Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:02.480Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:02.480Z nodeRunner Starting sandbox [worker #0, session #onory]\n',
'2021-12-06T16:33:02.480Z nodeRunner Preparing sandbox [worker #0, session #onory]\n',
'2021-12-06T16:33:02.480Z nodeRunner Prepared sandbox [worker #0, session #onory]\n',
'2021-12-06T16:33:02.480Z workers [worker #0, session #onory] Running tests in sandbox\n',
'2021-12-06T16:33:02.618Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:02.619Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:02.619Z project Test run was cancelled\n',
'2021-12-06T16:33:02.756Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:02.757Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:02.757Z project Test run was cancelled\n',
'2021-12-06T16:33:02.767Z workers Scheduling Jest Test Run (onory): 2021-12-06T16:33:02.482Z\n',
'2021-12-06T16:33:02.776Z workers Jest Test Run Complete (onory): 2021-12-06T16:33:02.766Z\n',
'2021-12-06T16:33:02.777Z workers [onory] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:02.777Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:02.777Z project Test run finished\n',
'2021-12-06T16:33:02.777Z project Test run data re-queued\n',
'2021-12-06T16:33:02.811Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:02.812Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:02.812Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:02.812Z nodeRunner Starting sandbox [worker #0, session #ngasu]\n',
'2021-12-06T16:33:02.812Z nodeRunner Preparing sandbox [worker #0, session #ngasu]\n',
'2021-12-06T16:33:02.812Z nodeRunner Prepared sandbox [worker #0, session #ngasu]\n',
'2021-12-06T16:33:02.812Z workers [worker #0, session #ngasu] Running tests in sandbox\n',
'2021-12-06T16:33:02.932Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:02.932Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:02.932Z project Test run was cancelled\n',
'2021-12-06T16:33:03.078Z workers Scheduling Jest Test Run (ngasu): 2021-12-06T16:33:02.814Z\n',
'2021-12-06T16:33:03.085Z workers Jest Test Run Complete (ngasu): 2021-12-06T16:33:03.076Z\n',
'2021-12-06T16:33:03.085Z workers [ngasu] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:03.086Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:03.086Z project Test run finished\n',
'2021-12-06T16:33:03.086Z project Test run data re-queued\n',
'2021-12-06T16:33:03.139Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:03.139Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:03.139Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:03.139Z nodeRunner Starting sandbox [worker #0, session #bgdby]\n',
'2021-12-06T16:33:03.139Z nodeRunner Preparing sandbox [worker #0, session #bgdby]\n',
'2021-12-06T16:33:03.139Z nodeRunner Prepared sandbox [worker #0, session #bgdby]\n',
'2021-12-06T16:33:03.139Z workers [worker #0, session #bgdby] Running tests in sandbox\n',
'2021-12-06T16:33:03.373Z workers Scheduling Jest Test Run (bgdby): 2021-12-06T16:33:03.142Z\n',
'2021-12-06T16:33:03.376Z workers Sandbox (active) [bgdby] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:33:03.379Z workers [bgdby] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:33:03.380Z workers Jest Test Run Complete (bgdby): 2021-12-06T16:33:03.372Z\n',
'2021-12-06T16:33:03.382Z workers [bgdby] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:03.382Z project Test run finished\n',
'2021-12-06T16:33:03.382Z project Processed console.log entries\n',
'2021-12-06T16:33:03.382Z project Processed loading sequences\n',
'2021-12-06T16:33:03.382Z project Processed executed tests\n',
'2021-12-06T16:33:03.382Z project Processed code coverage\n',
'2021-12-06T16:33:03.384Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:33:03.709Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:03.714Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:03.714Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:03.714Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:03.714Z nodeRunner Starting sandbox [worker #0, session #h9u5m]\n',
'2021-12-06T16:33:03.714Z nodeRunner Preparing sandbox [worker #0, session #h9u5m]\n',
'2021-12-06T16:33:03.714Z nodeRunner Prepared sandbox [worker #0, session #h9u5m]\n',
'2021-12-06T16:33:03.715Z workers [worker #0, session #h9u5m] Running tests in sandbox\n',
'2021-12-06T16:33:04.034Z workers Scheduling Jest Test Run (h9u5m): 2021-12-06T16:33:03.716Z\n',
'2021-12-06T16:33:04.037Z workers Sandbox (active) [h9u5m] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:33:04.042Z workers [h9u5m] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:33:04.043Z workers Jest Test Run Complete (h9u5m): 2021-12-06T16:33:04.027Z\n',
'2021-12-06T16:33:04.044Z workers [h9u5m] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:04.045Z project Test run finished\n',
'2021-12-06T16:33:04.045Z project Processed console.log entries\n',
'2021-12-06T16:33:04.045Z project Processed loading sequences\n',
'2021-12-06T16:33:04.045Z project Processed executed tests\n',
'2021-12-06T16:33:04.045Z project Processed code coverage\n',
'2021-12-06T16:33:04.048Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:33:04.109Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:04.114Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:04.114Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:04.115Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:04.115Z nodeRunner Starting sandbox [worker #0, session #ai7qx]\n',
'2021-12-06T16:33:04.115Z nodeRunner Preparing sandbox [worker #0, session #ai7qx]\n',
'2021-12-06T16:33:04.115Z nodeRunner Prepared sandbox [worker #0, session #ai7qx]\n',
'2021-12-06T16:33:04.115Z workers [worker #0, session #ai7qx] Running tests in sandbox\n',
'2021-12-06T16:33:04.209Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:04.210Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:04.210Z project Test run was cancelled\n',
'2021-12-06T16:33:04.468Z workers Scheduling Jest Test Run (ai7qx): 2021-12-06T16:33:04.122Z\n',
'2021-12-06T16:33:04.477Z workers Jest Test Run Complete (ai7qx): 2021-12-06T16:33:04.466Z\n',
'2021-12-06T16:33:04.477Z workers [ai7qx] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:04.477Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:04.477Z project Test run finished\n',
'2021-12-06T16:33:04.477Z project Test run data re-queued\n',
'2021-12-06T16:33:04.518Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:04.518Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:04.519Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:04.519Z nodeRunner Starting sandbox [worker #0, session #crafj]\n',
'2021-12-06T16:33:04.519Z nodeRunner Preparing sandbox [worker #0, session #crafj]\n',
'2021-12-06T16:33:04.519Z nodeRunner Prepared sandbox [worker #0, session #crafj]\n',
'2021-12-06T16:33:04.519Z workers [worker #0, session #crafj] Running tests in sandbox\n',
'2021-12-06T16:33:04.545Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:04.545Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:04.545Z project Test run was cancelled\n',
'2021-12-06T16:33:04.781Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:04.781Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:04.781Z project Test run was cancelled\n',
'2021-12-06T16:33:04.881Z workers Scheduling Jest Test Run (crafj): 2021-12-06T16:33:04.522Z\n',
'2021-12-06T16:33:04.888Z workers Jest Test Run Complete (crafj): 2021-12-06T16:33:04.879Z\n',
'2021-12-06T16:33:04.889Z workers [crafj] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:04.889Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:04.889Z project Test run finished\n',
'2021-12-06T16:33:04.889Z project Test run data re-queued\n',
'2021-12-06T16:33:04.937Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:04.937Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:04.937Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:04.937Z nodeRunner Starting sandbox [worker #0, session #2pw8v]\n',
'2021-12-06T16:33:04.937Z nodeRunner Preparing sandbox [worker #0, session #2pw8v]\n',
'2021-12-06T16:33:04.937Z nodeRunner Prepared sandbox [worker #0, session #2pw8v]\n',
'2021-12-06T16:33:04.937Z workers [worker #0, session #2pw8v] Running tests in sandbox\n',
'2021-12-06T16:33:04.959Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:04.959Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:04.959Z project Test run was cancelled\n',
'2021-12-06T16:33:05.169Z workers Scheduling Jest Test Run (2pw8v): 2021-12-06T16:33:04.940Z\n',
'2021-12-06T16:33:05.178Z workers Jest Test Run Complete (2pw8v): 2021-12-06T16:33:05.167Z\n',
'2021-12-06T16:33:05.178Z workers [2pw8v] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:05.178Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:05.178Z project Test run finished\n',
'2021-12-06T16:33:05.178Z project Test run data re-queued\n',
'2021-12-06T16:33:05.215Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:05.216Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:05.216Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:05.216Z nodeRunner Starting sandbox [worker #0, session #xpvrc]\n',
'2021-12-06T16:33:05.216Z nodeRunner Preparing sandbox [worker #0, session #xpvrc]\n',
'2021-12-06T16:33:05.216Z nodeRunner Prepared sandbox [worker #0, session #xpvrc]\n',
'2021-12-06T16:33:05.216Z workers [worker #0, session #xpvrc] Running tests in sandbox\n',
'2021-12-06T16:33:05.452Z workers Scheduling Jest Test Run (xpvrc): 2021-12-06T16:33:05.219Z\n',
'2021-12-06T16:33:05.455Z workers Sandbox (active) [xpvrc] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:33:05.458Z workers [xpvrc] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:33:05.458Z workers Jest Test Run Complete (xpvrc): 2021-12-06T16:33:05.451Z\n',
'2021-12-06T16:33:05.459Z workers [xpvrc] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:05.460Z project Test run finished\n',
'2021-12-06T16:33:05.460Z project Processed console.log entries\n',
'2021-12-06T16:33:05.460Z project Processed loading sequences\n',
'2021-12-06T16:33:05.460Z project Processed executed tests\n',
'2021-12-06T16:33:05.460Z project Processed code coverage\n',
'2021-12-06T16:33:05.463Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:33:05.952Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:05.957Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:05.957Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:05.958Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:05.958Z nodeRunner Starting sandbox [worker #0, session #dnyg4]\n',
'2021-12-06T16:33:05.958Z nodeRunner Preparing sandbox [worker #0, session #dnyg4]\n',
'2021-12-06T16:33:05.958Z nodeRunner Prepared sandbox [worker #0, session #dnyg4]\n',
'2021-12-06T16:33:05.958Z workers [worker #0, session #dnyg4] Running tests in sandbox\n',
'2021-12-06T16:33:06.188Z workers Scheduling Jest Test Run (dnyg4): 2021-12-06T16:33:05.961Z\n',
'2021-12-06T16:33:06.191Z workers Sandbox (active) [dnyg4] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:33:06.194Z workers [dnyg4] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:33:06.194Z workers Jest Test Run Complete (dnyg4): 2021-12-06T16:33:06.183Z\n',
'2021-12-06T16:33:06.196Z workers [dnyg4] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:06.197Z project Test run finished\n',
'2021-12-06T16:33:06.197Z project Processed console.log entries\n',
'2021-12-06T16:33:06.197Z project Processed loading sequences\n',
'2021-12-06T16:33:06.197Z project Processed executed tests\n',
'2021-12-06T16:33:06.197Z project Processed code coverage\n',
'2021-12-06T16:33:06.202Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:33:06.930Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:06.931Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:06.931Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:33:07.097Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:07.103Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:07.104Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:07.104Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:07.104Z nodeRunner Starting sandbox [worker #0, session #t85le]\n',
'2021-12-06T16:33:07.104Z nodeRunner Preparing sandbox [worker #0, session #t85le]\n',
'2021-12-06T16:33:07.104Z nodeRunner Prepared sandbox [worker #0, session #t85le]\n',
'2021-12-06T16:33:07.104Z workers [worker #0, session #t85le] Running tests in sandbox\n',
'2021-12-06T16:33:07.361Z workers Scheduling Jest Test Run (t85le): 2021-12-06T16:33:07.108Z\n',
'2021-12-06T16:33:07.365Z workers Sandbox (active) [t85le] error: Missing second argument. It must be a callback function. Perhaps you want to use `test.todo` for a test placeholder.\n',
'2021-12-06T16:33:07.371Z workers [t85le] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:33:07.372Z workers Jest Test Run Complete (t85le): 2021-12-06T16:33:07.358Z\n',
'2021-12-06T16:33:07.373Z workers [t85le] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:07.374Z project Test run finished\n',
'2021-12-06T16:33:07.374Z project Processed console.log entries\n',
'2021-12-06T16:33:07.374Z project Processed loading sequences\n',
'2021-12-06T16:33:07.374Z project Processed executed tests\n',
'2021-12-06T16:33:07.374Z project Processed code coverage\n',
'2021-12-06T16:33:07.380Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:33:07.443Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:07.443Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:07.965Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:07.969Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:07.969Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:07.970Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:07.970Z nodeRunner Starting sandbox [worker #0, session #5laqn]\n',
'2021-12-06T16:33:07.970Z nodeRunner Preparing sandbox [worker #0, session #5laqn]\n',
'2021-12-06T16:33:07.970Z nodeRunner Prepared sandbox [worker #0, session #5laqn]\n',
'2021-12-06T16:33:07.970Z workers [worker #0, session #5laqn] Running tests in sandbox\n',
'2021-12-06T16:33:08.252Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:08.253Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:08.253Z project Test run was cancelled\n',
'2021-12-06T16:33:08.329Z workers Scheduling Jest Test Run (5laqn): 2021-12-06T16:33:07.972Z\n',
'2021-12-06T16:33:08.338Z workers Jest Test Run Complete (5laqn): 2021-12-06T16:33:08.324Z\n',
'2021-12-06T16:33:08.338Z workers [5laqn] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:08.339Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:08.339Z project Test run finished\n',
'2021-12-06T16:33:08.339Z project Test run data re-queued\n',
'2021-12-06T16:33:08.351Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:08.357Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:08.357Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:08.357Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:08.357Z nodeRunner Starting sandbox [worker #0, session #rolnu]\n',
'2021-12-06T16:33:08.358Z nodeRunner Preparing sandbox [worker #0, session #rolnu]\n',
'2021-12-06T16:33:08.358Z nodeRunner Prepared sandbox [worker #0, session #rolnu]\n',
'2021-12-06T16:33:08.358Z workers [worker #0, session #rolnu] Running tests in sandbox\n',
'2021-12-06T16:33:08.542Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:08.543Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:08.543Z project Test run was cancelled\n',
'2021-12-06T16:33:08.702Z workers Scheduling Jest Test Run (rolnu): 2021-12-06T16:33:08.360Z\n',
'2021-12-06T16:33:08.710Z workers Jest Test Run Complete (rolnu): 2021-12-06T16:33:08.700Z\n',
'2021-12-06T16:33:08.710Z workers [rolnu] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:08.711Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:08.711Z project Test run finished\n',
'2021-12-06T16:33:08.711Z project Test run data re-queued\n',
'2021-12-06T16:33:08.753Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:08.753Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:08.753Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:08.753Z nodeRunner Starting sandbox [worker #0, session #n7ai3]\n',
'2021-12-06T16:33:08.754Z nodeRunner Preparing sandbox [worker #0, session #n7ai3]\n',
'2021-12-06T16:33:08.754Z nodeRunner Prepared sandbox [worker #0, session #n7ai3]\n',
'2021-12-06T16:33:08.754Z workers [worker #0, session #n7ai3] Running tests in sandbox\n',
'2021-12-06T16:33:08.769Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:08.769Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:08.769Z project Test run was cancelled\n',
'2021-12-06T16:33:08.970Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:08.971Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:08.971Z project Test run was cancelled\n',
'2021-12-06T16:33:09.040Z workers Scheduling Jest Test Run (n7ai3): 2021-12-06T16:33:08.757Z\n',
'2021-12-06T16:33:09.047Z workers Jest Test Run Complete (n7ai3): 2021-12-06T16:33:09.032Z\n',
'2021-12-06T16:33:09.048Z workers [n7ai3] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:09.048Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:09.048Z project Test run finished\n',
'2021-12-06T16:33:09.048Z project Test run data re-queued\n',
'2021-12-06T16:33:09.079Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:09.079Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:09.080Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:09.080Z nodeRunner Starting sandbox [worker #0, session #kjwcv]\n',
'2021-12-06T16:33:09.080Z nodeRunner Preparing sandbox [worker #0, session #kjwcv]\n',
'2021-12-06T16:33:09.080Z nodeRunner Prepared sandbox [worker #0, session #kjwcv]\n',
'2021-12-06T16:33:09.080Z workers [worker #0, session #kjwcv] Running tests in sandbox\n',
'2021-12-06T16:33:09.215Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:09.216Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:09.216Z project Test run was cancelled\n',
'2021-12-06T16:33:09.379Z workers Scheduling Jest Test Run (kjwcv): 2021-12-06T16:33:09.083Z\n',
'2021-12-06T16:33:09.386Z workers Jest Test Run Complete (kjwcv): 2021-12-06T16:33:09.367Z\n',
'2021-12-06T16:33:09.387Z workers [kjwcv] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:09.387Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:09.387Z project Test run finished\n',
'2021-12-06T16:33:09.387Z project Test run data re-queued\n',
'2021-12-06T16:33:09.421Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:09.421Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:09.422Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:09.422Z nodeRunner Starting sandbox [worker #0, session #s2bf6]\n',
'2021-12-06T16:33:09.422Z nodeRunner Preparing sandbox [worker #0, session #s2bf6]\n',
'2021-12-06T16:33:09.422Z nodeRunner Prepared sandbox [worker #0, session #s2bf6]\n',
'2021-12-06T16:33:09.422Z workers [worker #0, session #s2bf6] Running tests in sandbox\n',
'2021-12-06T16:33:09.549Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:09.549Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:09.549Z project Test run was cancelled\n',
'2021-12-06T16:33:09.766Z workers Scheduling Jest Test Run (s2bf6): 2021-12-06T16:33:09.428Z\n',
'2021-12-06T16:33:09.791Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:09.792Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:09.792Z project Test run was cancelled\n',
'2021-12-06T16:33:09.795Z workers Jest Test Run Complete (s2bf6): 2021-12-06T16:33:09.761Z\n',
'2021-12-06T16:33:09.796Z workers [s2bf6] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:09.796Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:09.796Z project Test run finished\n',
'2021-12-06T16:33:09.796Z project Test run data re-queued\n',
'2021-12-06T16:33:09.848Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:09.848Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:09.849Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:09.849Z nodeRunner Starting sandbox [worker #0, session #44dww]\n',
'2021-12-06T16:33:09.849Z nodeRunner Preparing sandbox [worker #0, session #44dww]\n',
'2021-12-06T16:33:09.849Z nodeRunner Prepared sandbox [worker #0, session #44dww]\n',
'2021-12-06T16:33:09.849Z workers [worker #0, session #44dww] Running tests in sandbox\n',
'2021-12-06T16:33:10.041Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:10.041Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:10.041Z project Test run was cancelled\n',
'2021-12-06T16:33:10.340Z workers Scheduling Jest Test Run (44dww): 2021-12-06T16:33:09.852Z\n',
'2021-12-06T16:33:10.421Z workers [44dww] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:10.422Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:10.422Z project Test run finished\n',
'2021-12-06T16:33:10.422Z project Test run data re-queued\n',
'2021-12-06T16:33:10.451Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:10.452Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:10.452Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:10.452Z nodeRunner Starting sandbox [worker #0, session #6mg22]\n',
'2021-12-06T16:33:10.452Z nodeRunner Preparing sandbox [worker #0, session #6mg22]\n',
'2021-12-06T16:33:10.452Z nodeRunner Prepared sandbox [worker #0, session #6mg22]\n',
'2021-12-06T16:33:10.452Z workers [worker #0, session #6mg22] Running tests in sandbox\n',
'2021-12-06T16:33:10.490Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:10.491Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:10.491Z project Test run was cancelled\n',
'2021-12-06T16:33:10.800Z workers Scheduling Jest Test Run (6mg22): 2021-12-06T16:33:10.455Z\n',
'2021-12-06T16:33:10.815Z workers [6mg22] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:10.815Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:10.815Z project Test run finished\n',
'2021-12-06T16:33:10.815Z project Test run data re-queued\n',
'2021-12-06T16:33:10.850Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:10.850Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:10.851Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:10.851Z nodeRunner Starting sandbox [worker #0, session #lg7v6]\n',
'2021-12-06T16:33:10.851Z nodeRunner Preparing sandbox [worker #0, session #lg7v6]\n',
'2021-12-06T16:33:10.851Z nodeRunner Prepared sandbox [worker #0, session #lg7v6]\n',
'2021-12-06T16:33:10.851Z workers [worker #0, session #lg7v6] Running tests in sandbox\n',
'2021-12-06T16:33:11.184Z workers Scheduling Jest Test Run (lg7v6): 2021-12-06T16:33:10.863Z\n',
'2021-12-06T16:33:11.202Z workers [lg7v6] Loaded unknown number of test(s)\n',
'2021-12-06T16:33:11.442Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:11.446Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:11.446Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:33:11.686Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:11.687Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:11.687Z project Test run was cancelled\n',
'2021-12-06T16:33:11.691Z workers [lg7v6] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:11.692Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:11.692Z project Test run finished\n',
'2021-12-06T16:33:11.693Z project Test run data re-queued\n',
'2021-12-06T16:33:11.760Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:11.760Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:11.762Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:11.762Z nodeRunner Starting sandbox [worker #0, session #s76kk]\n',
'2021-12-06T16:33:11.763Z nodeRunner Preparing sandbox [worker #0, session #s76kk]\n',
'2021-12-06T16:33:11.763Z nodeRunner Prepared sandbox [worker #0, session #s76kk]\n',
'2021-12-06T16:33:11.763Z workers [worker #0, session #s76kk] Running tests in sandbox\n',
'2021-12-06T16:33:11.803Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:11.804Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:11.804Z project Test run was cancelled\n',
'2021-12-06T16:33:12.035Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:12.036Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:12.036Z project Test run was cancelled\n',
'2021-12-06T16:33:12.340Z workers Scheduling Jest Test Run (s76kk): 2021-12-06T16:33:11.766Z\n',
'2021-12-06T16:33:12.378Z workers [s76kk] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:12.379Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:12.379Z project Test run finished\n',
'2021-12-06T16:33:12.379Z project Test run data re-queued\n',
'2021-12-06T16:33:12.398Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:12.399Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:12.401Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:12.401Z nodeRunner Starting sandbox [worker #0, session #b5g19]\n',
'2021-12-06T16:33:12.401Z nodeRunner Preparing sandbox [worker #0, session #b5g19]\n',
'2021-12-06T16:33:12.401Z nodeRunner Prepared sandbox [worker #0, session #b5g19]\n',
'2021-12-06T16:33:12.401Z workers [worker #0, session #b5g19] Running tests in sandbox\n',
'2021-12-06T16:33:12.471Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:12.472Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:12.472Z project Test run was cancelled\n',
'2021-12-06T16:33:12.665Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:12.666Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:12.666Z project Test run was cancelled\n',
'2021-12-06T16:33:12.844Z workers Scheduling Jest Test Run (b5g19): 2021-12-06T16:33:12.594Z\n',
'2021-12-06T16:33:12.845Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:12.845Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:12.845Z project Test run was cancelled\n',
'2021-12-06T16:33:12.961Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:12.961Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:12.961Z project Test run was cancelled\n',
'2021-12-06T16:33:13.172Z workers Jest Test Run Complete (b5g19): 2021-12-06T16:33:12.833Z\n',
'2021-12-06T16:33:13.174Z workers [b5g19] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:13.175Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:13.175Z project Test run finished\n',
'2021-12-06T16:33:13.175Z project Test run data re-queued\n',
'2021-12-06T16:33:13.243Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:13.247Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:13.255Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:13.256Z nodeRunner Starting sandbox [worker #0, session #qn4fa]\n',
'2021-12-06T16:33:13.256Z nodeRunner Preparing sandbox [worker #0, session #qn4fa]\n',
'2021-12-06T16:33:13.256Z nodeRunner Prepared sandbox [worker #0, session #qn4fa]\n',
'2021-12-06T16:33:13.256Z workers [worker #0, session #qn4fa] Running tests in sandbox\n',
'2021-12-06T16:33:13.296Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:13.300Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:13.300Z project Test run was cancelled\n',
'2021-12-06T16:33:13.411Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:13.412Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:13.412Z project Test run was cancelled\n',
'2021-12-06T16:33:13.752Z workers Scheduling Jest Test Run (qn4fa): 2021-12-06T16:33:13.275Z\n',
'2021-12-06T16:33:13.788Z workers [qn4fa] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:13.789Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:13.789Z project Test run finished\n',
'2021-12-06T16:33:13.789Z project Test run data re-queued\n',
'2021-12-06T16:33:13.842Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:13.842Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:13.842Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:13.842Z nodeRunner Starting sandbox [worker #0, session #xjr5m]\n',
'2021-12-06T16:33:13.842Z nodeRunner Preparing sandbox [worker #0, session #xjr5m]\n',
'2021-12-06T16:33:13.842Z nodeRunner Prepared sandbox [worker #0, session #xjr5m]\n',
'2021-12-06T16:33:13.842Z workers [worker #0, session #xjr5m] Running tests in sandbox\n',
'2021-12-06T16:33:13.966Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:13.966Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:13.966Z project Test run was cancelled\n',
'2021-12-06T16:33:14.275Z workers Scheduling Jest Test Run (xjr5m): 2021-12-06T16:33:13.847Z\n',
'2021-12-06T16:33:14.331Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:14.331Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:14.331Z project Test run was cancelled\n',
'2021-12-06T16:33:14.424Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:14.425Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:14.425Z project Test run was cancelled\n',
'2021-12-06T16:33:14.431Z workers [xjr5m] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:14.431Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:14.431Z project Test run finished\n',
'2021-12-06T16:33:14.431Z project Test run data re-queued\n',
'2021-12-06T16:33:14.484Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:14.484Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:14.484Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:14.484Z nodeRunner Starting sandbox [worker #0, session #adj1j]\n',
'2021-12-06T16:33:14.485Z nodeRunner Preparing sandbox [worker #0, session #adj1j]\n',
'2021-12-06T16:33:14.485Z nodeRunner Prepared sandbox [worker #0, session #adj1j]\n',
'2021-12-06T16:33:14.485Z workers [worker #0, session #adj1j] Running tests in sandbox\n',
'2021-12-06T16:33:14.731Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:14.732Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:14.732Z project Test run was cancelled\n',
'2021-12-06T16:33:15.006Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:15.006Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:15.006Z project Test run was cancelled\n',
'2021-12-06T16:33:15.095Z workers Sandbox (inactive) [adj1j] error: process.exit called with 1\n',
'2021-12-06T16:33:15.113Z workers Sandbox (inactive) [adj1j] error: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLo'... 23291 more characters,
'2021-12-06T16:33:15.113Z workers Jest cache corrupted: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLocalRoot),j=e'... 23615 more characters,
'2021-12-06T16:33:15.235Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:15.236Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:15.236Z project Test run was cancelled\n',
'2021-12-06T16:33:15.689Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:15.689Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:15.689Z project Test run was cancelled\n',
'2021-12-06T16:33:15.935Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:15.935Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:15.935Z project Test run was cancelled\n',
'2021-12-06T16:33:16.263Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:16.264Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:16.264Z project Test run was cancelled\n',
'2021-12-06T16:33:16.697Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:16.698Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:16.698Z project Test run was cancelled\n',
'2021-12-06T16:33:16.732Z workers [adj1j] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:33:16.732Z workers [adj1j] Sandbox closing error, not opened\n',
'2021-12-06T16:33:16.732Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:16.732Z project Test run finished\n',
'2021-12-06T16:33:16.733Z project Test run data re-queued\n',
'2021-12-06T16:33:16.752Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:16.752Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:16.753Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:16.753Z nodeRunner Starting sandbox [worker #0, session #rk2b2]\n',
'2021-12-06T16:33:16.753Z nodeRunner Preparing sandbox [worker #0, session #rk2b2]\n',
'2021-12-06T16:33:16.753Z workers Starting run worker instance #0\n',
'2021-12-06T16:33:16.889Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:16.923Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:33:16.923Z nodeRunner Prepared sandbox [worker #0, session #rk2b2]\n',
'2021-12-06T16:33:16.923Z workers [worker #0, session #rk2b2] Running tests in sandbox\n',
'2021-12-06T16:33:17.245Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:17.245Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:17.245Z project Test run was cancelled\n',
'2021-12-06T16:33:17.515Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:17.516Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:17.516Z project Test run was cancelled\n',
'2021-12-06T16:33:17.590Z workers [rk2b2] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:17.590Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:17.590Z project Test run finished\n',
'2021-12-06T16:33:17.590Z project Test run data re-queued\n',
'2021-12-06T16:33:17.626Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:17.626Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:17.626Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:17.626Z nodeRunner Starting sandbox [worker #0, session #nlscl]\n',
'2021-12-06T16:33:17.627Z nodeRunner Preparing sandbox [worker #0, session #nlscl]\n',
'2021-12-06T16:33:17.627Z nodeRunner Prepared sandbox [worker #0, session #nlscl]\n',
'2021-12-06T16:33:17.627Z workers [worker #0, session #nlscl] Running tests in sandbox\n',
'2021-12-06T16:33:17.894Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:17.894Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:17.894Z project Test run was cancelled\n',
'2021-12-06T16:33:18.148Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:18.149Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:18.149Z project Test run was cancelled\n',
'2021-12-06T16:33:18.372Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:18.372Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:18.372Z project Test run was cancelled\n',
'2021-12-06T16:33:18.529Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:18.529Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:18.529Z project Test run was cancelled\n',
'2021-12-06T16:33:18.661Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:18.661Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:19.575Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:19.576Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:19.577Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:33:19.956Z workers Scheduling Jest Test Run (nlscl): 2021-12-06T16:33:17.694Z\n',
'2021-12-06T16:33:19.961Z workers Jest Test Run Complete (nlscl): 2021-12-06T16:33:19.953Z\n',
'2021-12-06T16:33:19.962Z workers [nlscl] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:19.962Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:19.962Z project Test run finished\n',
'2021-12-06T16:33:19.962Z project Test run data re-queued\n',
'2021-12-06T16:33:20.001Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:20.001Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:20.002Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:20.002Z nodeRunner Starting sandbox [worker #0, session #qtru9]\n',
'2021-12-06T16:33:20.002Z nodeRunner Preparing sandbox [worker #0, session #qtru9]\n',
'2021-12-06T16:33:20.002Z nodeRunner Prepared sandbox [worker #0, session #qtru9]\n',
'2021-12-06T16:33:20.002Z workers [worker #0, session #qtru9] Running tests in sandbox\n',
'2021-12-06T16:33:20.182Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:20.183Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:20.183Z project Test run was cancelled\n',
'2021-12-06T16:33:20.598Z workers Scheduling Jest Test Run (qtru9): 2021-12-06T16:33:20.006Z\n',
'2021-12-06T16:33:20.626Z workers [qtru9] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:20.626Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:20.626Z project Test run finished\n',
'2021-12-06T16:33:20.626Z project Test run data re-queued\n',
'2021-12-06T16:33:20.639Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:20.640Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:20.640Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:20.640Z nodeRunner Starting sandbox [worker #0, session #xofye]\n',
'2021-12-06T16:33:20.640Z nodeRunner Preparing sandbox [worker #0, session #xofye]\n',
'2021-12-06T16:33:20.640Z nodeRunner Prepared sandbox [worker #0, session #xofye]\n',
'2021-12-06T16:33:20.640Z workers [worker #0, session #xofye] Running tests in sandbox\n',
'2021-12-06T16:33:21.062Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:21.062Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:21.062Z project Test run was cancelled\n',
'2021-12-06T16:33:21.339Z workers Scheduling Jest Test Run (xofye): 2021-12-06T16:33:20.651Z\n',
'2021-12-06T16:33:21.345Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:21.347Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:33:21.347Z project Test run was cancelled\n',
'2021-12-06T16:33:21.359Z workers [xofye] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:21.359Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:33:21.359Z project Test run finished\n',
'2021-12-06T16:33:21.359Z project Test run data re-queued\n',
'2021-12-06T16:33:21.404Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:21.404Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:21.407Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:21.407Z nodeRunner Starting sandbox [worker #0, session #2s5v7]\n',
'2021-12-06T16:33:21.407Z nodeRunner Preparing sandbox [worker #0, session #2s5v7]\n',
'2021-12-06T16:33:21.407Z nodeRunner Prepared sandbox [worker #0, session #2s5v7]\n',
'2021-12-06T16:33:21.407Z workers [worker #0, session #2s5v7] Running tests in sandbox\n',
'2021-12-06T16:33:21.783Z workers Scheduling Jest Test Run (2s5v7): 2021-12-06T16:33:21.414Z\n',
'2021-12-06T16:33:21.785Z workers Sandbox (active) [2s5v7] error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 78 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n' +
' 79 | .\n' +
'> 80 | ;\n' +
' | ^ SyntaxError: Unexpected token (80:8)\n' +
' 81 | }));\n' +
' 82 | it("will respond with a page on root", () => __awaiter(void 0, void 0, void 0, function* () {\n' +
' 83 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n',
'2021-12-06T16:33:21.788Z workers [2s5v7] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:33:21.788Z workers Jest Test Run Complete (2s5v7): 2021-12-06T16:33:21.771Z\n',
'2021-12-06T16:33:21.790Z workers [2s5v7] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:21.791Z workers Failed to map the stack to user code, entry message: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 78 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n' +
' 79 | .\n' +
'> 80 | ;\n' +
' | ^ SyntaxError: Unexpected token (80:8)\n' +
' 81 | }));\n' +
' 82 | it("will respond with a page on root", () => __awaiter(void 0, void 0, void 0, function* () {\n' +
' 83 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`), stack: Error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 78 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n' +
' 79 | .\n' +
'> 80 | ;\n' +
' | ^ SyntaxError: Unexpected token (80:8)\n' +
' 81 | }));\n' +
' 82 | it("will respond with a page on root", () => __awaiter(void 0, void 0, void 0, function* () {\n' +
' 83 | const res = yield (0, supertest_1.default)(`localhost:${wPort}`)\n' +
' at Object.formatInstrumentationError (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:29:31736)\n' +
' at s (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/runners/node/jest@24.8.0/initializer.js:15:1423)\n' +
' at TsJestTransformer.e.process (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/runners/node/jest@24.8.0/initializer.js:15:3031)\n' +
' at ScriptTransformer.transformSource (<rootDir>/node_modules/@jest/transform/build/ScriptTransformer.js:612:31)\n' +
' at ScriptTransform\n',
'2021-12-06T16:33:21.791Z project Test run finished\n',
'2021-12-06T16:33:21.791Z project Processed console.log entries\n',
'2021-12-06T16:33:21.791Z project Processed loading sequences\n',
'2021-12-06T16:33:21.791Z project Processed executed tests\n',
'2021-12-06T16:33:21.792Z project Processed code coverage\n',
'2021-12-06T16:33:21.796Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:33:22.278Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:22.279Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:22.279Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:33:40.889Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:40.898Z project Test run started; run priority: 2\n',
'2021-12-06T16:33:40.898Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:33:40.900Z workers Starting test run, priority: 2\n',
'2021-12-06T16:33:40.900Z nodeRunner Starting sandbox [worker #0, session #ck59e]\n',
'2021-12-06T16:33:40.900Z nodeRunner Preparing sandbox [worker #0, session #ck59e]\n',
'2021-12-06T16:33:40.900Z nodeRunner Prepared sandbox [worker #0, session #ck59e]\n',
'2021-12-06T16:33:40.900Z workers [worker #0, session #ck59e] Running tests in sandbox\n',
'2021-12-06T16:33:41.250Z workers Scheduling Jest Test Run (ck59e): 2021-12-06T16:33:40.902Z\n',
'2021-12-06T16:33:41.267Z workers [ck59e] Loaded unknown number of test(s)\n',
'2021-12-06T16:33:41.822Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:41.824Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:33:41.825Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:33:42.275Z workers [ck59e] Test executed: will compile a valid script\n',
'2021-12-06T16:33:42.779Z workers [ck59e] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:33:43.575Z workers [ck59e] Test executed: will fail an invalid script\n',
'2021-12-06T16:33:44.534Z workers [ck59e] Test executed: will fail when accessing a unshared node global\n',
'2021-12-06T16:33:45.048Z workers [ck59e] Test executed: will not provide debugStdin or debugStdout on regular requests\n',
'2021-12-06T16:33:45.051Z workers [ck59e] Test executed: will respond with a page on root\n',
'2021-12-06T16:33:45.060Z workers [ck59e] Test executed: will respond with a version number on /version\n',
'2021-12-06T16:33:45.065Z workers [ck59e] Run 7 test(s), skipped 0 test(s)\n',
'2021-12-06T16:33:45.066Z workers Jest Test Run Complete (ck59e): 2021-12-06T16:33:45.059Z\n',
'2021-12-06T16:33:45.068Z workers [ck59e] Sandbox is responsive, closing it\n',
'2021-12-06T16:33:45.068Z project Test run finished\n',
'2021-12-06T16:33:45.068Z project Processed console.log entries\n',
'2021-12-06T16:33:45.068Z project Processed loading sequences\n',
'2021-12-06T16:33:45.068Z project Processed executed tests\n',
'2021-12-06T16:33:45.069Z project Processed code coverage\n',
'2021-12-06T16:33:45.076Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:34:21.939Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:21.941Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:21.941Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:21.942Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:21.942Z nodeRunner Starting sandbox [worker #0, session #ih530]\n',
'2021-12-06T16:34:21.942Z nodeRunner Preparing sandbox [worker #0, session #ih530]\n',
'2021-12-06T16:34:21.942Z nodeRunner Prepared sandbox [worker #0, session #ih530]\n',
'2021-12-06T16:34:21.942Z workers [worker #0, session #ih530] Running tests in sandbox\n',
'2021-12-06T16:34:22.293Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:22.294Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:22.294Z project Test run was cancelled\n',
'2021-12-06T16:34:22.315Z workers Scheduling Jest Test Run (ih530): 2021-12-06T16:34:21.944Z\n',
'2021-12-06T16:34:22.340Z workers [ih530] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:22.340Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:22.340Z project Test run finished\n',
'2021-12-06T16:34:22.340Z project Test run data re-queued\n',
'2021-12-06T16:34:22.348Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:22.348Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:22.349Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:22.349Z nodeRunner Starting sandbox [worker #0, session #9iqk8]\n',
'2021-12-06T16:34:22.349Z nodeRunner Preparing sandbox [worker #0, session #9iqk8]\n',
'2021-12-06T16:34:22.349Z nodeRunner Prepared sandbox [worker #0, session #9iqk8]\n',
'2021-12-06T16:34:22.349Z workers [worker #0, session #9iqk8] Running tests in sandbox\n',
'2021-12-06T16:34:22.551Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:22.552Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:22.552Z project Test run was cancelled\n',
'2021-12-06T16:34:22.962Z workers Scheduling Jest Test Run (9iqk8): 2021-12-06T16:34:22.360Z\n',
'2021-12-06T16:34:23.008Z workers [9iqk8] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:23.009Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:23.009Z project Test run finished\n',
'2021-12-06T16:34:23.009Z project Test run data re-queued\n',
'2021-12-06T16:34:23.017Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:23.017Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:23.017Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:23.017Z nodeRunner Starting sandbox [worker #0, session #ge69i]\n',
'2021-12-06T16:34:23.017Z nodeRunner Preparing sandbox [worker #0, session #ge69i]\n',
'2021-12-06T16:34:23.017Z nodeRunner Prepared sandbox [worker #0, session #ge69i]\n',
'2021-12-06T16:34:23.017Z workers [worker #0, session #ge69i] Running tests in sandbox\n',
'2021-12-06T16:34:23.069Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:23.070Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:23.070Z project Test run was cancelled\n',
'2021-12-06T16:34:23.174Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:23.177Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:23.177Z project Test run was cancelled\n',
'2021-12-06T16:34:23.358Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:23.358Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:23.358Z project Test run was cancelled\n',
'2021-12-06T16:34:23.563Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:23.564Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:23.564Z project Test run was cancelled\n',
'2021-12-06T16:34:23.853Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:23.854Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:23.854Z project Test run was cancelled\n',
'2021-12-06T16:34:24.127Z workers Scheduling Jest Test Run (ge69i): 2021-12-06T16:34:23.118Z\n',
'2021-12-06T16:34:24.192Z workers Jest Test Run Complete (ih530): 2021-12-06T16:34:24.141Z\n',
'2021-12-06T16:34:24.193Z workers [ge69i] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:24.193Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:24.193Z project Test run finished\n',
'2021-12-06T16:34:24.193Z project Test run data re-queued\n',
'2021-12-06T16:34:24.221Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:24.221Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:24.222Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:24.222Z nodeRunner Starting sandbox [worker #0, session #jpbx1]\n',
'2021-12-06T16:34:24.222Z nodeRunner Preparing sandbox [worker #0, session #jpbx1]\n',
'2021-12-06T16:34:24.222Z nodeRunner Prepared sandbox [worker #0, session #jpbx1]\n',
'2021-12-06T16:34:24.222Z workers [worker #0, session #jpbx1] Running tests in sandbox\n',
'2021-12-06T16:34:24.494Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:24.495Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:24.495Z project Test run was cancelled\n',
'2021-12-06T16:34:24.785Z workers Scheduling Jest Test Run (jpbx1): 2021-12-06T16:34:24.226Z\n',
'2021-12-06T16:34:24.823Z workers [jpbx1] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:24.824Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:24.824Z project Test run finished\n',
'2021-12-06T16:34:24.825Z project Test run data re-queued\n',
'2021-12-06T16:34:24.856Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:24.856Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:24.857Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:24.857Z nodeRunner Starting sandbox [worker #0, session #4rb8e]\n',
'2021-12-06T16:34:24.857Z nodeRunner Preparing sandbox [worker #0, session #4rb8e]\n',
'2021-12-06T16:34:24.857Z nodeRunner Prepared sandbox [worker #0, session #4rb8e]\n',
'2021-12-06T16:34:24.857Z workers [worker #0, session #4rb8e] Running tests in sandbox\n',
'2021-12-06T16:34:25.202Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:25.202Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:25.202Z project Test run was cancelled\n',
'2021-12-06T16:34:25.338Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:25.340Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:25.340Z project Test run was cancelled\n',
'2021-12-06T16:34:25.529Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:25.530Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:25.530Z project Test run was cancelled\n',
'2021-12-06T16:34:25.929Z workers Scheduling Jest Test Run (4rb8e): 2021-12-06T16:34:25.605Z\n',
'2021-12-06T16:34:25.961Z workers Jest Test Run Complete (4rb8e): 2021-12-06T16:34:25.921Z\n',
'2021-12-06T16:34:25.962Z workers [4rb8e] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:25.963Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:25.963Z project Test run finished\n',
'2021-12-06T16:34:25.963Z project Test run data re-queued\n',
'2021-12-06T16:34:26.002Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:26.002Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:26.007Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:26.007Z nodeRunner Starting sandbox [worker #0, session #jl1vd]\n',
'2021-12-06T16:34:26.008Z nodeRunner Preparing sandbox [worker #0, session #jl1vd]\n',
'2021-12-06T16:34:26.008Z nodeRunner Prepared sandbox [worker #0, session #jl1vd]\n',
'2021-12-06T16:34:26.008Z workers [worker #0, session #jl1vd] Running tests in sandbox\n',
'2021-12-06T16:34:26.010Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:26.011Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:26.011Z project Test run was cancelled\n',
'2021-12-06T16:34:26.322Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:26.323Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:26.323Z project Test run was cancelled\n',
'2021-12-06T16:34:26.512Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:26.513Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:26.513Z project Test run was cancelled\n',
'2021-12-06T16:34:26.629Z workers Scheduling Jest Test Run (jl1vd): 2021-12-06T16:34:26.011Z\n',
'2021-12-06T16:34:26.667Z workers [jl1vd] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:26.669Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:26.670Z project Test run finished\n',
'2021-12-06T16:34:26.670Z project Test run data re-queued\n',
'2021-12-06T16:34:26.681Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:26.683Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:26.683Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:26.683Z nodeRunner Starting sandbox [worker #0, session #z2rdo]\n',
'2021-12-06T16:34:26.683Z nodeRunner Preparing sandbox [worker #0, session #z2rdo]\n',
'2021-12-06T16:34:26.683Z nodeRunner Prepared sandbox [worker #0, session #z2rdo]\n',
'2021-12-06T16:34:26.683Z workers [worker #0, session #z2rdo] Running tests in sandbox\n',
'2021-12-06T16:34:26.784Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:26.785Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:26.785Z project Test run was cancelled\n',
'2021-12-06T16:34:26.942Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:26.943Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:26.943Z project Test run was cancelled\n',
'2021-12-06T16:34:27.054Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:27.054Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:27.054Z project Test run was cancelled\n',
'2021-12-06T16:34:27.679Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:27.679Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:27.697Z workers Scheduling Jest Test Run (z2rdo): 2021-12-06T16:34:26.940Z\n',
'2021-12-06T16:34:27.726Z workers [z2rdo] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:27.726Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:27.726Z project Test run finished\n',
'2021-12-06T16:34:27.726Z project Test run data re-queued\n',
'2021-12-06T16:34:27.766Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:27.766Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:27.767Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:27.767Z nodeRunner Starting sandbox [worker #0, session #g2tt1]\n',
'2021-12-06T16:34:27.767Z nodeRunner Preparing sandbox [worker #0, session #g2tt1]\n',
'2021-12-06T16:34:27.767Z nodeRunner Prepared sandbox [worker #0, session #g2tt1]\n',
'2021-12-06T16:34:27.767Z workers [worker #0, session #g2tt1] Running tests in sandbox\n',
'2021-12-06T16:34:27.970Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:27.971Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:27.971Z project Test run was cancelled\n',
'2021-12-06T16:34:28.208Z workers Scheduling Jest Test Run (g2tt1): 2021-12-06T16:34:27.770Z\n',
'2021-12-06T16:34:28.227Z workers [g2tt1] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:28.227Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:28.228Z project Test run finished\n',
'2021-12-06T16:34:28.228Z project Test run data re-queued\n',
'2021-12-06T16:34:28.241Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:28.251Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:28.251Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:28.252Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:28.252Z nodeRunner Starting sandbox [worker #0, session #106w4]\n',
'2021-12-06T16:34:28.252Z nodeRunner Preparing sandbox [worker #0, session #106w4]\n',
'2021-12-06T16:34:28.252Z nodeRunner Prepared sandbox [worker #0, session #106w4]\n',
'2021-12-06T16:34:28.252Z workers [worker #0, session #106w4] Running tests in sandbox\n',
'2021-12-06T16:34:28.513Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:28.514Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:28.514Z project Test run was cancelled\n',
'2021-12-06T16:34:28.657Z workers Scheduling Jest Test Run (106w4): 2021-12-06T16:34:28.261Z\n',
'2021-12-06T16:34:28.700Z workers [106w4] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:28.700Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:28.700Z project Test run finished\n',
'2021-12-06T16:34:28.700Z project Test run data re-queued\n',
'2021-12-06T16:34:28.723Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:28.783Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:28.783Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:28.784Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:28.784Z nodeRunner Starting sandbox [worker #0, session #swu9d]\n',
'2021-12-06T16:34:28.784Z nodeRunner Preparing sandbox [worker #0, session #swu9d]\n',
'2021-12-06T16:34:28.784Z nodeRunner Prepared sandbox [worker #0, session #swu9d]\n',
'2021-12-06T16:34:28.784Z workers [worker #0, session #swu9d] Running tests in sandbox\n',
'2021-12-06T16:34:28.928Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:28.929Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:28.929Z project Test run was cancelled\n',
'2021-12-06T16:34:29.131Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:29.131Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:29.131Z project Test run was cancelled\n',
'2021-12-06T16:34:29.302Z workers Scheduling Jest Test Run (swu9d): 2021-12-06T16:34:28.788Z\n',
'2021-12-06T16:34:29.465Z workers [swu9d] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:29.465Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:29.465Z project Test run finished\n',
'2021-12-06T16:34:29.466Z project Test run data re-queued\n',
'2021-12-06T16:34:29.491Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:29.491Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:29.492Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:29.492Z nodeRunner Starting sandbox [worker #0, session #pwyia]\n',
'2021-12-06T16:34:29.492Z nodeRunner Preparing sandbox [worker #0, session #pwyia]\n',
'2021-12-06T16:34:29.492Z nodeRunner Prepared sandbox [worker #0, session #pwyia]\n',
'2021-12-06T16:34:29.492Z workers [worker #0, session #pwyia] Running tests in sandbox\n',
'2021-12-06T16:34:29.663Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:29.664Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:29.664Z project Test run was cancelled\n',
'2021-12-06T16:34:30.022Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:30.022Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:30.022Z project Test run was cancelled\n',
'2021-12-06T16:34:30.373Z workers Scheduling Jest Test Run (pwyia): 2021-12-06T16:34:29.827Z\n',
'2021-12-06T16:34:30.431Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:30.432Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:30.432Z project Test run was cancelled\n',
'2021-12-06T16:34:30.473Z workers [pwyia] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:30.476Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:30.476Z project Test run finished\n',
'2021-12-06T16:34:30.476Z project Test run data re-queued\n',
'2021-12-06T16:34:30.509Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:30.509Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:30.513Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:30.513Z nodeRunner Starting sandbox [worker #0, session #s678h]\n',
'2021-12-06T16:34:30.514Z nodeRunner Preparing sandbox [worker #0, session #s678h]\n',
'2021-12-06T16:34:30.514Z nodeRunner Prepared sandbox [worker #0, session #s678h]\n',
'2021-12-06T16:34:30.514Z workers [worker #0, session #s678h] Running tests in sandbox\n',
'2021-12-06T16:34:31.066Z workers Scheduling Jest Test Run (s678h): 2021-12-06T16:34:30.524Z\n',
'2021-12-06T16:34:31.095Z workers [s678h] Loaded unknown number of test(s)\n',
'2021-12-06T16:34:31.359Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:31.360Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:31.360Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:34:31.663Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:31.664Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:31.664Z project Test run was cancelled\n',
'2021-12-06T16:34:31.668Z workers [s678h] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:31.668Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:31.668Z project Test run finished\n',
'2021-12-06T16:34:31.668Z project Test run data re-queued\n',
'2021-12-06T16:34:31.719Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:31.720Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:31.720Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:31.720Z nodeRunner Starting sandbox [worker #0, session #f4fc7]\n',
'2021-12-06T16:34:31.720Z nodeRunner Preparing sandbox [worker #0, session #f4fc7]\n',
'2021-12-06T16:34:31.720Z nodeRunner Prepared sandbox [worker #0, session #f4fc7]\n',
'2021-12-06T16:34:31.720Z workers [worker #0, session #f4fc7] Running tests in sandbox\n',
'2021-12-06T16:34:31.917Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:31.918Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:31.918Z project Test run was cancelled\n',
'2021-12-06T16:34:32.108Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:32.109Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:32.109Z project Test run was cancelled\n',
'2021-12-06T16:34:32.205Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:32.206Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:32.206Z project Test run was cancelled\n',
'2021-12-06T16:34:32.335Z workers Scheduling Jest Test Run (f4fc7): 2021-12-06T16:34:31.724Z\n',
'2021-12-06T16:34:32.340Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:32.341Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:32.341Z project Test run was cancelled\n',
'2021-12-06T16:34:32.548Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:32.549Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:32.549Z project Test run was cancelled\n',
'2021-12-06T16:34:32.615Z workers Jest Test Run Complete (106w4): 2021-12-06T16:34:32.458Z\n',
'2021-12-06T16:34:32.618Z workers Jest Test Run Complete (z2rdo): 2021-12-06T16:34:32.461Z\n',
'2021-12-06T16:34:32.619Z workers [f4fc7] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:32.619Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:32.619Z project Test run finished\n',
'2021-12-06T16:34:32.619Z project Test run data re-queued\n',
'2021-12-06T16:34:32.686Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:32.686Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:32.687Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:32.688Z nodeRunner Starting sandbox [worker #0, session #ob0ie]\n',
'2021-12-06T16:34:32.688Z nodeRunner Preparing sandbox [worker #0, session #ob0ie]\n',
'2021-12-06T16:34:32.688Z nodeRunner Prepared sandbox [worker #0, session #ob0ie]\n',
'2021-12-06T16:34:32.688Z workers [worker #0, session #ob0ie] Running tests in sandbox\n',
'2021-12-06T16:34:32.878Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:32.879Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:32.879Z project Test run was cancelled\n',
'2021-12-06T16:34:33.045Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:33.046Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:33.046Z project Test run was cancelled\n',
'2021-12-06T16:34:33.209Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:33.210Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:33.210Z project Test run was cancelled\n',
'2021-12-06T16:34:33.407Z workers Scheduling Jest Test Run (ob0ie): 2021-12-06T16:34:32.783Z\n',
'2021-12-06T16:34:33.446Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:33.448Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:33.448Z project Test run was cancelled\n',
'2021-12-06T16:34:33.508Z workers [ob0ie] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:33.508Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:33.508Z project Test run finished\n',
'2021-12-06T16:34:33.508Z project Test run data re-queued\n',
'2021-12-06T16:34:33.596Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:33.682Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:33.682Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:33.683Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:33.683Z nodeRunner Starting sandbox [worker #0, session #ak4yk]\n',
'2021-12-06T16:34:33.684Z nodeRunner Preparing sandbox [worker #0, session #ak4yk]\n',
'2021-12-06T16:34:33.684Z nodeRunner Prepared sandbox [worker #0, session #ak4yk]\n',
'2021-12-06T16:34:33.684Z workers [worker #0, session #ak4yk] Running tests in sandbox\n',
'2021-12-06T16:34:34.049Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:34.049Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:34.049Z project Test run was cancelled\n',
'2021-12-06T16:34:34.227Z workers Scheduling Jest Test Run (ak4yk): 2021-12-06T16:34:33.688Z\n',
'2021-12-06T16:34:34.254Z workers [ak4yk] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:34.254Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:34.254Z project Test run finished\n',
'2021-12-06T16:34:34.254Z project Test run data re-queued\n',
'2021-12-06T16:34:34.310Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:34.310Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:34.311Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:34.311Z nodeRunner Starting sandbox [worker #0, session #k0le7]\n',
'2021-12-06T16:34:34.311Z nodeRunner Preparing sandbox [worker #0, session #k0le7]\n',
'2021-12-06T16:34:34.311Z nodeRunner Prepared sandbox [worker #0, session #k0le7]\n',
'2021-12-06T16:34:34.311Z workers [worker #0, session #k0le7] Running tests in sandbox\n',
'2021-12-06T16:34:34.435Z workers Sandbox (active) [k0le7] error: process.exit called with 1\n',
'2021-12-06T16:34:34.437Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:34.437Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:34.438Z project Test run was cancelled\n',
'2021-12-06T16:34:34.443Z workers Sandbox (inactive) [k0le7] error: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLo'... 23291 more characters,
'2021-12-06T16:34:34.443Z workers Jest cache corrupted: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLocalRoot),j=e'... 23615 more characters,
'2021-12-06T16:34:34.900Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:34.900Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:34.900Z project Test run was cancelled\n',
'2021-12-06T16:34:35.067Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:35.068Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:35.068Z project Test run was cancelled\n',
'2021-12-06T16:34:35.194Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:35.194Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:35.194Z project Test run was cancelled\n',
'2021-12-06T16:34:35.329Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:35.330Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:35.330Z project Test run was cancelled\n',
'2021-12-06T16:34:35.469Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:35.470Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:35.470Z project Test run was cancelled\n',
'2021-12-06T16:34:35.640Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:35.640Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:35.640Z project Test run was cancelled\n',
'2021-12-06T16:34:36.118Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:36.118Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:36.438Z workers [k0le7] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:34:36.439Z workers [k0le7] Sandbox closing error, not opened\n',
'2021-12-06T16:34:36.440Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:36.440Z project Test run finished\n',
'2021-12-06T16:34:36.440Z project Test run data re-queued\n',
'2021-12-06T16:34:36.459Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:36.459Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:36.460Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:36.460Z nodeRunner Starting sandbox [worker #0, session #g3i27]\n',
'2021-12-06T16:34:36.460Z nodeRunner Preparing sandbox [worker #0, session #g3i27]\n',
'2021-12-06T16:34:36.460Z workers Starting run worker instance #0\n',
'2021-12-06T16:34:36.483Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:36.609Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:34:36.610Z nodeRunner Prepared sandbox [worker #0, session #g3i27]\n',
'2021-12-06T16:34:36.610Z workers [worker #0, session #g3i27] Running tests in sandbox\n',
'2021-12-06T16:34:37.232Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:37.233Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:37.233Z project Test run was cancelled\n',
'2021-12-06T16:34:37.283Z workers [g3i27] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:37.284Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:37.284Z project Test run finished\n',
'2021-12-06T16:34:37.284Z project Test run data re-queued\n',
'2021-12-06T16:34:37.289Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:37.289Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:37.290Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:37.290Z nodeRunner Starting sandbox [worker #0, session #qv771]\n',
'2021-12-06T16:34:37.290Z nodeRunner Preparing sandbox [worker #0, session #qv771]\n',
'2021-12-06T16:34:37.290Z nodeRunner Prepared sandbox [worker #0, session #qv771]\n',
'2021-12-06T16:34:37.291Z workers [worker #0, session #qv771] Running tests in sandbox\n',
'2021-12-06T16:34:37.456Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:37.456Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:37.456Z project Test run was cancelled\n',
'2021-12-06T16:34:37.633Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:37.633Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:37.633Z project Test run was cancelled\n',
'2021-12-06T16:34:37.927Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:37.927Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:37.927Z project Test run was cancelled\n',
'2021-12-06T16:34:38.183Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:38.183Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:38.183Z project Test run was cancelled\n',
'2021-12-06T16:34:38.393Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:38.394Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:38.394Z project Test run was cancelled\n',
'2021-12-06T16:34:38.590Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:38.590Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:38.590Z project Test run was cancelled\n',
'2021-12-06T16:34:38.721Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:38.722Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:38.722Z project Test run was cancelled\n',
'2021-12-06T16:34:38.870Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:38.871Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:38.871Z project Test run was cancelled\n',
'2021-12-06T16:34:39.022Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:39.022Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:39.304Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:39.304Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:39.304Z project Test run was cancelled\n',
'2021-12-06T16:34:39.811Z workers Scheduling Jest Test Run (qv771): 2021-12-06T16:34:37.373Z\n',
'2021-12-06T16:34:39.832Z workers [qv771] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:39.832Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:39.832Z project Test run finished\n',
'2021-12-06T16:34:39.832Z project Test run data re-queued\n',
'2021-12-06T16:34:39.862Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:39.862Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:39.863Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:39.863Z nodeRunner Starting sandbox [worker #0, session #ou2vm]\n',
'2021-12-06T16:34:39.863Z nodeRunner Preparing sandbox [worker #0, session #ou2vm]\n',
'2021-12-06T16:34:39.863Z nodeRunner Prepared sandbox [worker #0, session #ou2vm]\n',
'2021-12-06T16:34:39.863Z workers [worker #0, session #ou2vm] Running tests in sandbox\n',
'2021-12-06T16:34:40.286Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:40.288Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:40.288Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:34:40.321Z workers Scheduling Jest Test Run (ou2vm): 2021-12-06T16:34:39.866Z\n',
'2021-12-06T16:34:40.340Z workers [ou2vm] Loaded unknown number of test(s)\n',
'2021-12-06T16:34:41.233Z workers [ou2vm] Test executed: will compile a valid script\n',
'2021-12-06T16:34:41.834Z workers [ou2vm] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:34:42.757Z workers [ou2vm] Test executed: will fail an invalid script\n',
'2021-12-06T16:34:43.697Z workers [ou2vm] Test executed: will fail when accessing a unshared node global\n',
'2021-12-06T16:34:44.032Z workers [ou2vm] Run 4 test(s), skipped 0 test(s)\n',
'2021-12-06T16:34:44.032Z workers Jest Test Run Complete (qv771): 2021-12-06T16:34:44.026Z\n',
'2021-12-06T16:34:44.034Z workers [ou2vm] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:44.034Z project Test run finished\n',
'2021-12-06T16:34:44.034Z project Processed console.log entries\n',
'2021-12-06T16:34:44.034Z project Processed loading sequences\n',
'2021-12-06T16:34:44.034Z project Processed executed tests\n',
'2021-12-06T16:34:44.036Z project Processed code coverage\n',
'2021-12-06T16:34:44.046Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:34:52.036Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:52.040Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:52.040Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:52.041Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:52.041Z nodeRunner Starting sandbox [worker #0, session #7ublq]\n',
'2021-12-06T16:34:52.041Z nodeRunner Preparing sandbox [worker #0, session #7ublq]\n',
'2021-12-06T16:34:52.041Z nodeRunner Prepared sandbox [worker #0, session #7ublq]\n',
'2021-12-06T16:34:52.041Z workers [worker #0, session #7ublq] Running tests in sandbox\n',
'2021-12-06T16:34:52.410Z workers Scheduling Jest Test Run (7ublq): 2021-12-06T16:34:52.043Z\n',
'2021-12-06T16:34:52.426Z workers [7ublq] Loaded unknown number of test(s)\n',
'2021-12-06T16:34:53.024Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:53.026Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:53.027Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:34:53.438Z workers [7ublq] Test executed: will fail when accessing a unshared node global\n',
'2021-12-06T16:34:53.442Z workers [7ublq] Run 1 test(s), skipped 0 test(s)\n',
'2021-12-06T16:34:53.442Z workers Jest Test Run Complete (7ublq): 2021-12-06T16:34:53.437Z\n',
'2021-12-06T16:34:53.444Z workers [7ublq] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:53.444Z project Test run finished\n',
'2021-12-06T16:34:53.444Z project Processed console.log entries\n',
'2021-12-06T16:34:53.444Z project Processed loading sequences\n',
'2021-12-06T16:34:53.444Z project Processed executed tests\n',
'2021-12-06T16:34:53.446Z project Processed code coverage\n',
'2021-12-06T16:34:53.451Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:34:54.946Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:54.951Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:54.951Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:54.952Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:54.952Z nodeRunner Starting sandbox [worker #0, session #y84dv]\n',
'2021-12-06T16:34:54.952Z nodeRunner Preparing sandbox [worker #0, session #y84dv]\n',
'2021-12-06T16:34:54.952Z nodeRunner Prepared sandbox [worker #0, session #y84dv]\n',
'2021-12-06T16:34:54.952Z workers [worker #0, session #y84dv] Running tests in sandbox\n',
'2021-12-06T16:34:55.284Z workers Scheduling Jest Test Run (y84dv): 2021-12-06T16:34:54.954Z\n',
'2021-12-06T16:34:55.299Z workers [y84dv] Loaded unknown number of test(s)\n',
'2021-12-06T16:34:55.829Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:55.830Z workers [y84dv] Test executed: will not provide debugStdin or debugStdout on regular requests\n',
'2021-12-06T16:34:55.831Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:55.831Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:34:55.837Z workers [y84dv] Run 1 test(s), skipped 0 test(s)\n',
'2021-12-06T16:34:55.838Z workers Jest Test Run Complete (y84dv): 2021-12-06T16:34:55.826Z\n',
'2021-12-06T16:34:55.841Z workers [y84dv] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:55.842Z project Test run finished\n',
'2021-12-06T16:34:55.842Z project Processed console.log entries\n',
'2021-12-06T16:34:55.842Z project Processed loading sequences\n',
'2021-12-06T16:34:55.842Z project Processed executed tests\n',
'2021-12-06T16:34:55.842Z project Processed code coverage\n',
'2021-12-06T16:34:55.853Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:34:57.546Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:57.556Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:57.556Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:57.557Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:57.557Z nodeRunner Starting sandbox [worker #0, session #u4kaa]\n',
'2021-12-06T16:34:57.557Z nodeRunner Preparing sandbox [worker #0, session #u4kaa]\n',
'2021-12-06T16:34:57.557Z nodeRunner Prepared sandbox [worker #0, session #u4kaa]\n',
'2021-12-06T16:34:57.557Z workers [worker #0, session #u4kaa] Running tests in sandbox\n',
'2021-12-06T16:34:57.748Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:57.902Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:34:57.902Z project Test run was cancelled\n',
'2021-12-06T16:34:57.911Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:57.913Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:34:57.914Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:34:58.040Z workers Scheduling Jest Test Run (u4kaa): 2021-12-06T16:34:57.560Z\n',
'2021-12-06T16:34:58.060Z workers [u4kaa] Sandbox is responsive, closing it\n',
'2021-12-06T16:34:58.060Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:34:58.060Z project Test run finished\n',
'2021-12-06T16:34:58.060Z project Test run data re-queued\n',
'2021-12-06T16:34:58.066Z project Test run started; run priority: 2\n',
'2021-12-06T16:34:58.066Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:34:58.066Z workers Starting test run, priority: 2\n',
'2021-12-06T16:34:58.066Z nodeRunner Starting sandbox [worker #0, session #sfiym]\n',
'2021-12-06T16:34:58.066Z nodeRunner Preparing sandbox [worker #0, session #sfiym]\n',
'2021-12-06T16:34:58.066Z nodeRunner Prepared sandbox [worker #0, session #sfiym]\n',
'2021-12-06T16:34:58.066Z workers [worker #0, session #sfiym] Running tests in sandbox\n',
'2021-12-06T16:34:58.725Z workers Scheduling Jest Test Run (sfiym): 2021-12-06T16:34:58.081Z\n',
'2021-12-06T16:34:58.739Z workers [sfiym] Loaded unknown number of test(s)\n',
'2021-12-06T16:34:59.734Z workers [sfiym] Test executed: will compile a valid script\n',
'2021-12-06T16:35:00.344Z workers [sfiym] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:35:01.258Z workers [sfiym] Test executed: will fail an invalid script\n',
'2021-12-06T16:35:02.199Z workers [sfiym] Test executed: will fail when accessing a unshared node global\n',
'2021-12-06T16:35:02.267Z workers [sfiym] Run 4 test(s), skipped 0 test(s)\n',
'2021-12-06T16:35:02.268Z workers Jest Test Run Complete (u4kaa): 2021-12-06T16:35:02.256Z\n',
'2021-12-06T16:35:02.270Z workers [sfiym] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:02.270Z project Test run finished\n',
'2021-12-06T16:35:02.270Z project Processed console.log entries\n',
'2021-12-06T16:35:02.270Z project Processed loading sequences\n',
'2021-12-06T16:35:02.270Z project Processed executed tests\n',
'2021-12-06T16:35:02.271Z project Processed code coverage\n',
'2021-12-06T16:35:02.282Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:35:02.669Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:02.674Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:02.674Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:02.674Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:02.674Z nodeRunner Starting sandbox [worker #0, session #okvrz]\n',
'2021-12-06T16:35:02.674Z nodeRunner Preparing sandbox [worker #0, session #okvrz]\n',
'2021-12-06T16:35:02.674Z nodeRunner Prepared sandbox [worker #0, session #okvrz]\n',
'2021-12-06T16:35:02.674Z workers [worker #0, session #okvrz] Running tests in sandbox\n',
'2021-12-06T16:35:02.857Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:02.858Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:02.858Z project Test run was cancelled\n',
'2021-12-06T16:35:03.032Z workers Scheduling Jest Test Run (okvrz): 2021-12-06T16:35:02.676Z\n',
'2021-12-06T16:35:03.052Z workers [okvrz] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:03.053Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:35:03.053Z project Test run finished\n',
'2021-12-06T16:35:03.053Z project Test run data re-queued\n',
'2021-12-06T16:35:03.064Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:03.064Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:03.065Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:03.065Z nodeRunner Starting sandbox [worker #0, session #xhi0s]\n',
'2021-12-06T16:35:03.065Z nodeRunner Preparing sandbox [worker #0, session #xhi0s]\n',
'2021-12-06T16:35:03.065Z nodeRunner Prepared sandbox [worker #0, session #xhi0s]\n',
'2021-12-06T16:35:03.065Z workers [worker #0, session #xhi0s] Running tests in sandbox\n',
'2021-12-06T16:35:03.073Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:03.073Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:03.073Z project Test run was cancelled\n',
'2021-12-06T16:35:03.308Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:03.308Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:03.308Z project Test run was cancelled\n',
'2021-12-06T16:35:03.476Z workers Jest Test Run Complete (sfiym): 2021-12-06T16:35:03.047Z\n',
'2021-12-06T16:35:03.502Z workers Scheduling Jest Test Run (xhi0s): 2021-12-06T16:35:03.079Z\n',
'2021-12-06T16:35:03.507Z workers [xhi0s] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:03.507Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:35:03.507Z project Test run finished\n',
'2021-12-06T16:35:03.507Z project Test run data re-queued\n',
'2021-12-06T16:35:03.520Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:03.520Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:03.522Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:03.522Z nodeRunner Starting sandbox [worker #0, session #b2c22]\n',
'2021-12-06T16:35:03.522Z nodeRunner Preparing sandbox [worker #0, session #b2c22]\n',
'2021-12-06T16:35:03.522Z nodeRunner Prepared sandbox [worker #0, session #b2c22]\n',
'2021-12-06T16:35:03.522Z workers [worker #0, session #b2c22] Running tests in sandbox\n',
'2021-12-06T16:35:03.955Z workers Scheduling Jest Test Run (b2c22): 2021-12-06T16:35:03.528Z\n',
'2021-12-06T16:35:03.996Z workers [b2c22] Loaded unknown number of test(s)\n',
'2021-12-06T16:35:04.083Z workers [b2c22] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:35:04.087Z workers Jest Test Run Complete (okvrz): 2021-12-06T16:35:04.012Z\n',
'2021-12-06T16:35:04.098Z workers [b2c22] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:04.099Z project Test run finished\n',
'2021-12-06T16:35:04.099Z project Processed console.log entries\n',
'2021-12-06T16:35:04.099Z project Processed loading sequences\n',
'2021-12-06T16:35:04.099Z project Processed executed tests\n',
'2021-12-06T16:35:04.100Z project Processed code coverage\n',
'2021-12-06T16:35:04.116Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:35:04.320Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:04.321Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:04.321Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:04.952Z workers Sandbox (inactive) [b2c22] error: process.exit called with 1\n',
'2021-12-06T16:35:04.955Z workers Sandbox (inactive) [b2c22] error: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLo'... 23291 more characters,
'2021-12-06T16:35:04.955Z workers Jest cache corrupted: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLocalRoot),j=e'... 23689 more characters,
'2021-12-06T16:35:05.515Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:05.519Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:05.519Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:05.520Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:05.520Z nodeRunner Starting sandbox [worker #0, session #nv5e8]\n',
'2021-12-06T16:35:05.520Z nodeRunner Preparing sandbox [worker #0, session #nv5e8]\n',
'2021-12-06T16:35:05.520Z nodeRunner Prepared sandbox [worker #0, session #nv5e8]\n',
'2021-12-06T16:35:05.520Z workers [worker #0, session #nv5e8] Running tests in sandbox\n',
'2021-12-06T16:35:05.522Z project Test run finished\n',
'2021-12-06T16:35:06.481Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:06.481Z workers [nv5e8] Sandbox can not be pinged: not opened\n',
'2021-12-06T16:35:06.481Z workers [nv5e8] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:35:06.481Z workers [nv5e8] Sandbox closing error, not opened\n',
'2021-12-06T16:35:06.481Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:06.481Z project Test run was cancelled\n',
'2021-12-06T16:35:06.483Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:06.483Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:06.484Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:06.484Z nodeRunner Starting sandbox [worker #0, session #7qay6]\n',
'2021-12-06T16:35:06.484Z nodeRunner Preparing sandbox [worker #0, session #7qay6]\n',
'2021-12-06T16:35:06.484Z workers Starting run worker instance #0\n',
'2021-12-06T16:35:06.636Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:35:06.636Z nodeRunner Prepared sandbox [worker #0, session #7qay6]\n',
'2021-12-06T16:35:06.636Z workers [worker #0, session #7qay6] Running tests in sandbox\n',
'2021-12-06T16:35:06.691Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:06.691Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:06.691Z project Test run was cancelled\n',
'2021-12-06T16:35:06.891Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:06.892Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:06.892Z project Test run was cancelled\n',
'2021-12-06T16:35:07.158Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:07.158Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:07.158Z project Test run was cancelled\n',
'2021-12-06T16:35:07.255Z workers [7qay6] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:07.255Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:35:07.255Z project Test run finished\n',
'2021-12-06T16:35:07.255Z project Test run data re-queued\n',
'2021-12-06T16:35:07.263Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:07.263Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:07.264Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:07.264Z nodeRunner Starting sandbox [worker #0, session #hy1k4]\n',
'2021-12-06T16:35:07.264Z nodeRunner Preparing sandbox [worker #0, session #hy1k4]\n',
'2021-12-06T16:35:07.264Z nodeRunner Prepared sandbox [worker #0, session #hy1k4]\n',
'2021-12-06T16:35:07.264Z workers [worker #0, session #hy1k4] Running tests in sandbox\n',
'2021-12-06T16:35:07.302Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:07.303Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:07.303Z project Test run was cancelled\n',
'2021-12-06T16:35:07.319Z workers [hy1k4] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:07.319Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:35:07.319Z project Test run finished\n',
'2021-12-06T16:35:07.319Z project Test run data re-queued\n',
'2021-12-06T16:35:07.359Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:07.359Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:07.359Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:07.359Z nodeRunner Starting sandbox [worker #0, session #5u2w5]\n',
'2021-12-06T16:35:07.359Z nodeRunner Preparing sandbox [worker #0, session #5u2w5]\n',
'2021-12-06T16:35:07.359Z nodeRunner Prepared sandbox [worker #0, session #5u2w5]\n',
'2021-12-06T16:35:07.359Z workers [worker #0, session #5u2w5] Running tests in sandbox\n',
'2021-12-06T16:35:07.492Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:07.492Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:07.492Z project Test run was cancelled\n',
'2021-12-06T16:35:07.662Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:07.662Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:07.662Z project Test run was cancelled\n',
'2021-12-06T16:35:07.842Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:07.843Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:07.843Z project Test run was cancelled\n',
'2021-12-06T16:35:08.048Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:08.048Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:08.048Z project Test run was cancelled\n',
'2021-12-06T16:35:08.282Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:08.283Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:08.283Z project Test run was cancelled\n',
'2021-12-06T16:35:08.438Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:08.438Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:08.438Z project Test run was cancelled\n',
'2021-12-06T16:35:09.335Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:09.336Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:09.337Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:09.752Z workers Sandbox (inactive) [5u2w5] error: process.exit called with 1\n',
'2021-12-06T16:35:09.758Z workers Sandbox (inactive) [5u2w5] error: node:internal/errors:464\n ErrorCaptureStackTrace(err);\n ^\n\nError [ERR_SERVER_NOT_RUNNING]: Server is not running.\n',
'2021-12-06T16:35:10.354Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:10.354Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:10.354Z project Test run was cancelled\n',
'2021-12-06T16:35:11.340Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:11.342Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:11.343Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:11.515Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:11.515Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:11.515Z project Test run was cancelled\n',
'2021-12-06T16:35:12.443Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:12.444Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:12.444Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:12.995Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:12.995Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:12.995Z project Test run was cancelled\n',
'2021-12-06T16:35:13.948Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:13.950Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:13.950Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:14.492Z workers [5u2w5] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:35:14.492Z workers [5u2w5] Sandbox closing error, not opened\n',
'2021-12-06T16:35:14.492Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:35:14.492Z project Test run finished\n',
'2021-12-06T16:35:14.492Z project Test run data re-queued\n',
'2021-12-06T16:35:14.513Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:14.513Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:14.513Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:14.513Z nodeRunner Starting sandbox [worker #0, session #2rtaj]\n',
'2021-12-06T16:35:14.514Z nodeRunner Preparing sandbox [worker #0, session #2rtaj]\n',
'2021-12-06T16:35:14.514Z workers Starting run worker instance #0\n',
'2021-12-06T16:35:14.629Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:35:14.629Z nodeRunner Prepared sandbox [worker #0, session #2rtaj]\n',
'2021-12-06T16:35:14.629Z workers [worker #0, session #2rtaj] Running tests in sandbox\n',
'2021-12-06T16:35:14.817Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:14.817Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:14.817Z project Test run was cancelled\n',
'2021-12-06T16:35:15.214Z workers [2rtaj] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:15.215Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:35:15.215Z project Test run finished\n',
'2021-12-06T16:35:15.215Z project Test run data re-queued\n',
'2021-12-06T16:35:15.227Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:15.227Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:15.228Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:15.228Z nodeRunner Starting sandbox [worker #0, session #9kdwa]\n',
'2021-12-06T16:35:15.228Z nodeRunner Preparing sandbox [worker #0, session #9kdwa]\n',
'2021-12-06T16:35:15.228Z nodeRunner Prepared sandbox [worker #0, session #9kdwa]\n',
'2021-12-06T16:35:15.228Z workers [worker #0, session #9kdwa] Running tests in sandbox\n',
'2021-12-06T16:35:15.751Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:15.752Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:15.753Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:17.384Z workers Scheduling Jest Test Run (9kdwa): 2021-12-06T16:35:15.273Z\n',
'2021-12-06T16:35:17.399Z workers [9kdwa] Loaded unknown number of test(s)\n',
'2021-12-06T16:35:17.937Z workers [9kdwa] Test executed: will not provide debugStdin or debugStdout on regular requests\n',
'2021-12-06T16:35:17.942Z workers [9kdwa] Run 1 test(s), skipped 0 test(s)\n',
'2021-12-06T16:35:17.942Z workers Jest Test Run Complete (9kdwa): 2021-12-06T16:35:17.935Z\n',
'2021-12-06T16:35:17.944Z workers [9kdwa] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:17.944Z project Test run finished\n',
'2021-12-06T16:35:17.944Z project Processed console.log entries\n',
'2021-12-06T16:35:17.944Z project Processed loading sequences\n',
'2021-12-06T16:35:17.944Z project Processed executed tests\n',
'2021-12-06T16:35:17.946Z project Processed code coverage\n',
'2021-12-06T16:35:17.951Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:35:22.331Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:22.336Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:22.336Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:22.336Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:22.336Z nodeRunner Starting sandbox [worker #0, session #i2h51]\n',
'2021-12-06T16:35:22.336Z nodeRunner Preparing sandbox [worker #0, session #i2h51]\n',
'2021-12-06T16:35:22.336Z nodeRunner Prepared sandbox [worker #0, session #i2h51]\n',
'2021-12-06T16:35:22.336Z workers [worker #0, session #i2h51] Running tests in sandbox\n',
'2021-12-06T16:35:22.718Z workers Scheduling Jest Test Run (i2h51): 2021-12-06T16:35:22.338Z\n',
'2021-12-06T16:35:22.732Z workers [i2h51] Loaded unknown number of test(s)\n',
'2021-12-06T16:35:23.271Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:23.272Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:23.273Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:23.562Z workers [i2h51] Test executed: will compile a valid script\n',
'2021-12-06T16:35:24.066Z workers [i2h51] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:35:24.882Z workers [i2h51] Test executed: will fail an invalid script\n',
'2021-12-06T16:35:25.629Z workers [i2h51] Test executed: will fail when accessing a unshared node global\n',
'2021-12-06T16:35:26.139Z workers [i2h51] Test executed: will not provide debugStdin or debugStdout on regular requests\n',
'2021-12-06T16:35:26.143Z workers [i2h51] Test executed: will respond with a page on root\n',
'2021-12-06T16:35:26.153Z workers [i2h51] Test executed: will respond with a version number on /version\n',
'2021-12-06T16:35:26.160Z workers [i2h51] Run 7 test(s), skipped 0 test(s)\n',
'2021-12-06T16:35:26.160Z workers Jest Test Run Complete (i2h51): 2021-12-06T16:35:26.152Z\n',
'2021-12-06T16:35:26.162Z workers [i2h51] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:26.162Z project Test run finished\n',
'2021-12-06T16:35:26.162Z project Processed console.log entries\n',
'2021-12-06T16:35:26.162Z project Processed loading sequences\n',
'2021-12-06T16:35:26.162Z project Processed executed tests\n',
'2021-12-06T16:35:26.165Z project Processed code coverage\n',
'2021-12-06T16:35:26.173Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:35:32.988Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:32.993Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:32.993Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:32.993Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:32.993Z nodeRunner Starting sandbox [worker #0, session #4ipxi]\n',
'2021-12-06T16:35:32.993Z nodeRunner Preparing sandbox [worker #0, session #4ipxi]\n',
'2021-12-06T16:35:32.993Z nodeRunner Prepared sandbox [worker #0, session #4ipxi]\n',
'2021-12-06T16:35:32.993Z workers [worker #0, session #4ipxi] Running tests in sandbox\n',
'2021-12-06T16:35:33.330Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:33.331Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:33.331Z project Test run was cancelled\n',
'2021-12-06T16:35:33.452Z workers Sandbox (inactive) [4ipxi] error: process.exit called with 1\n',
'2021-12-06T16:35:33.454Z workers Sandbox (inactive) [4ipxi] error: node:internal/errors:464\n ErrorCaptureStackTrace(err);\n ^\n\nError [ERR_SERVER_NOT_RUNNING]: Server is not running.\n',
'2021-12-06T16:35:33.456Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:33.456Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:33.456Z project Test run was cancelled\n',
'2021-12-06T16:35:33.686Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:33.687Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:33.687Z project Test run was cancelled\n',
'2021-12-06T16:35:33.826Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:33.827Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:33.827Z project Test run was cancelled\n',
'2021-12-06T16:35:34.312Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:34.313Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:34.313Z project Test run was cancelled\n',
'2021-12-06T16:35:34.553Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:34.554Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:34.554Z project Test run was cancelled\n',
'2021-12-06T16:35:34.652Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:34.653Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:34.653Z project Test run was cancelled\n',
'2021-12-06T16:35:35.331Z workers [4ipxi] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:35:35.331Z workers [4ipxi] Sandbox closing error, not opened\n',
'2021-12-06T16:35:35.331Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:35:35.331Z project Test run finished\n',
'2021-12-06T16:35:35.331Z project Test run data re-queued\n',
'2021-12-06T16:35:35.371Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:35.371Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:35.371Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:35.371Z nodeRunner Starting sandbox [worker #0, session #qvbw2]\n',
'2021-12-06T16:35:35.371Z nodeRunner Preparing sandbox [worker #0, session #qvbw2]\n',
'2021-12-06T16:35:35.371Z workers Starting run worker instance #0\n',
'2021-12-06T16:35:35.486Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:35:35.486Z nodeRunner Prepared sandbox [worker #0, session #qvbw2]\n',
'2021-12-06T16:35:35.486Z workers [worker #0, session #qvbw2] Running tests in sandbox\n',
'2021-12-06T16:35:35.619Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:35.620Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:35.620Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:38.203Z workers Scheduling Jest Test Run (qvbw2): 2021-12-06T16:35:36.038Z\n',
'2021-12-06T16:35:38.220Z workers [qvbw2] Loaded unknown number of test(s)\n',
'2021-12-06T16:35:39.107Z workers [qvbw2] Test executed: will compile a valid script\n',
'2021-12-06T16:35:39.616Z workers [qvbw2] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:35:40.353Z workers [qvbw2] Test executed: will fail an invalid script\n',
'2021-12-06T16:35:41.151Z workers [qvbw2] Test executed: will fail when accessing a unshared node global\n',
'2021-12-06T16:35:41.669Z workers [qvbw2] Test executed: will not provide debugStdin or debugStdout on regular requests\n',
'2021-12-06T16:35:41.673Z workers [qvbw2] Test executed: will respond with a page on root\n',
'2021-12-06T16:35:41.699Z workers [qvbw2] Test executed: will respond with a version number on /version\n',
'2021-12-06T16:35:41.704Z workers [qvbw2] Run 7 test(s), skipped 0 test(s)\n',
'2021-12-06T16:35:41.704Z workers Jest Test Run Complete (qvbw2): 2021-12-06T16:35:41.698Z\n',
'2021-12-06T16:35:41.706Z workers [qvbw2] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:41.706Z project Test run finished\n',
'2021-12-06T16:35:41.706Z project Processed console.log entries\n',
'2021-12-06T16:35:41.706Z project Processed loading sequences\n',
'2021-12-06T16:35:41.706Z project Processed executed tests\n',
'2021-12-06T16:35:41.708Z project Processed code coverage\n',
'2021-12-06T16:35:41.716Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:35:54.485Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:54.485Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:54.485Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:55.376Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:55.377Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:55.377Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:56.159Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:56.170Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:56.170Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:56.171Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:56.171Z nodeRunner Starting sandbox [worker #0, session #tepyy]\n',
'2021-12-06T16:35:56.171Z nodeRunner Preparing sandbox [worker #0, session #tepyy]\n',
'2021-12-06T16:35:56.171Z nodeRunner Prepared sandbox [worker #0, session #tepyy]\n',
'2021-12-06T16:35:56.171Z workers [worker #0, session #tepyy] Running tests in sandbox\n',
'2021-12-06T16:35:56.627Z workers Scheduling Jest Test Run (tepyy): 2021-12-06T16:35:56.175Z\n',
'2021-12-06T16:35:56.644Z workers [tepyy] Loaded unknown number of test(s)\n',
'2021-12-06T16:35:57.081Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:57.083Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:57.083Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:57.674Z workers [tepyy] Test executed: will compile a valid script\n',
'2021-12-06T16:35:58.166Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:58.167Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:35:58.167Z project Test run was cancelled\n',
'2021-12-06T16:35:58.170Z workers [tepyy] Sandbox is responsive, closing it\n',
'2021-12-06T16:35:58.171Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:35:58.171Z project Test run finished\n',
'2021-12-06T16:35:58.171Z project Test run data re-queued\n',
'2021-12-06T16:35:58.222Z project Test run started; run priority: 2\n',
'2021-12-06T16:35:58.222Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:35:58.223Z workers Starting test run, priority: 2\n',
'2021-12-06T16:35:58.223Z nodeRunner Starting sandbox [worker #0, session #lhjbn]\n',
'2021-12-06T16:35:58.223Z nodeRunner Preparing sandbox [worker #0, session #lhjbn]\n',
'2021-12-06T16:35:58.223Z nodeRunner Prepared sandbox [worker #0, session #lhjbn]\n',
'2021-12-06T16:35:58.223Z workers [worker #0, session #lhjbn] Running tests in sandbox\n',
'2021-12-06T16:35:58.593Z workers Scheduling Jest Test Run (lhjbn): 2021-12-06T16:35:58.225Z\n',
'2021-12-06T16:35:58.612Z workers [lhjbn] Loaded unknown number of test(s)\n',
'2021-12-06T16:35:59.088Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:59.090Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:35:59.090Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:35:59.635Z workers [lhjbn] Test executed: will compile a valid script\n',
'2021-12-06T16:36:00.252Z workers [lhjbn] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:36:01.129Z workers [lhjbn] Test executed: will fail an invalid script\n',
'2021-12-06T16:36:01.328Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:01.329Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:01.329Z project Test run was cancelled\n',
'2021-12-06T16:36:01.331Z workers [lhjbn] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:01.331Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:01.331Z project Test run finished\n',
'2021-12-06T16:36:01.331Z project Test run data re-queued\n',
'2021-12-06T16:36:01.386Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:01.387Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:01.387Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:01.387Z nodeRunner Starting sandbox [worker #0, session #je0wn]\n',
'2021-12-06T16:36:01.387Z nodeRunner Preparing sandbox [worker #0, session #je0wn]\n',
'2021-12-06T16:36:01.387Z nodeRunner Prepared sandbox [worker #0, session #je0wn]\n',
'2021-12-06T16:36:01.387Z workers [worker #0, session #je0wn] Running tests in sandbox\n',
'2021-12-06T16:36:01.868Z workers Scheduling Jest Test Run (je0wn): 2021-12-06T16:36:01.390Z\n',
'2021-12-06T16:36:01.891Z workers [je0wn] Loaded unknown number of test(s)\n',
'2021-12-06T16:36:02.074Z workers [je0wn] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:36:02.074Z workers Jest Test Run Complete (tepyy): 2021-12-06T16:36:02.069Z\n',
'2021-12-06T16:36:02.076Z workers [je0wn] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:02.076Z project Test run finished\n',
'2021-12-06T16:36:02.076Z project Processed console.log entries\n',
'2021-12-06T16:36:02.076Z project Processed loading sequences\n',
'2021-12-06T16:36:02.076Z project Processed executed tests\n',
'2021-12-06T16:36:02.077Z project Processed code coverage\n',
'2021-12-06T16:36:02.084Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:36:02.289Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:02.290Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:02.291Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:36:02.880Z workers Sandbox (inactive) [je0wn] error: process.exit called with 1\n',
'2021-12-06T16:36:02.882Z workers Sandbox (inactive) [je0wn] error: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLo'... 23291 more characters,
'2021-12-06T16:36:02.883Z workers Jest cache corrupted: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLocalRoot),j=e'... 23689 more characters,
'2021-12-06T16:36:04.924Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:04.931Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:04.931Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:04.932Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:04.932Z nodeRunner Starting sandbox [worker #0, session #zrun3]\n',
'2021-12-06T16:36:04.932Z nodeRunner Preparing sandbox [worker #0, session #zrun3]\n',
'2021-12-06T16:36:04.932Z nodeRunner Prepared sandbox [worker #0, session #zrun3]\n',
'2021-12-06T16:36:04.932Z workers [worker #0, session #zrun3] Running tests in sandbox\n',
'2021-12-06T16:36:04.935Z project Test run finished\n',
'2021-12-06T16:36:05.083Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:05.084Z workers [zrun3] Sandbox can not be pinged: not opened\n',
'2021-12-06T16:36:05.084Z workers [zrun3] Sandbox is not responsive, recycling worker instance\n',
'2021-12-06T16:36:05.084Z workers [zrun3] Sandbox closing error, not opened\n',
'2021-12-06T16:36:05.084Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:05.084Z project Test run was cancelled\n',
'2021-12-06T16:36:05.088Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:05.088Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:05.089Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:05.090Z nodeRunner Starting sandbox [worker #0, session #7r29t]\n',
'2021-12-06T16:36:05.090Z nodeRunner Preparing sandbox [worker #0, session #7r29t]\n',
'2021-12-06T16:36:05.090Z workers Starting run worker instance #0\n',
'2021-12-06T16:36:05.240Z workers Started run worker instance (delayed) #0\n',
'2021-12-06T16:36:05.240Z nodeRunner Prepared sandbox [worker #0, session #7r29t]\n',
'2021-12-06T16:36:05.240Z workers [worker #0, session #7r29t] Running tests in sandbox\n',
'2021-12-06T16:36:05.327Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:05.327Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:05.327Z project Test run was cancelled\n',
'2021-12-06T16:36:05.827Z workers [7r29t] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:05.827Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:05.827Z project Test run finished\n',
'2021-12-06T16:36:05.827Z project Test run data re-queued\n',
'2021-12-06T16:36:05.837Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:05.837Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:05.838Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:05.838Z nodeRunner Starting sandbox [worker #0, session #5u8y3]\n',
'2021-12-06T16:36:05.838Z nodeRunner Preparing sandbox [worker #0, session #5u8y3]\n',
'2021-12-06T16:36:05.838Z nodeRunner Prepared sandbox [worker #0, session #5u8y3]\n',
'2021-12-06T16:36:05.838Z workers [worker #0, session #5u8y3] Running tests in sandbox\n',
'2021-12-06T16:36:06.304Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:06.305Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:06.305Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:36:07.650Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:07.650Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:07.650Z project Test run was cancelled\n',
'2021-12-06T16:36:07.795Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:07.795Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:07.795Z project Test run was cancelled\n',
'2021-12-06T16:36:08.072Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:08.073Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:08.073Z project Test run was cancelled\n',
'2021-12-06T16:36:08.079Z workers Scheduling Jest Test Run (5u8y3): 2021-12-06T16:36:05.892Z\n',
'2021-12-06T16:36:08.099Z workers [5u8y3] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:08.100Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:08.100Z project Test run finished\n',
'2021-12-06T16:36:08.100Z project Test run data re-queued\n',
'2021-12-06T16:36:08.130Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:08.130Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:08.131Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:08.131Z nodeRunner Starting sandbox [worker #0, session #fv3am]\n',
'2021-12-06T16:36:08.133Z nodeRunner Preparing sandbox [worker #0, session #fv3am]\n',
'2021-12-06T16:36:08.133Z nodeRunner Prepared sandbox [worker #0, session #fv3am]\n',
'2021-12-06T16:36:08.133Z workers [worker #0, session #fv3am] Running tests in sandbox\n',
'2021-12-06T16:36:08.232Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:08.233Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:08.233Z project Test run was cancelled\n',
'2021-12-06T16:36:08.622Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:08.623Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:08.623Z project Test run was cancelled\n',
'2021-12-06T16:36:08.746Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:08.747Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:08.747Z project Test run was cancelled\n',
'2021-12-06T16:36:08.792Z workers Scheduling Jest Test Run (fv3am): 2021-12-06T16:36:08.137Z\n',
'2021-12-06T16:36:08.807Z workers [fv3am] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:08.809Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:08.809Z project Test run finished\n',
'2021-12-06T16:36:08.809Z project Test run data re-queued\n',
'2021-12-06T16:36:08.854Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:08.854Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:08.855Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:08.855Z nodeRunner Starting sandbox [worker #0, session #m3y69]\n',
'2021-12-06T16:36:08.855Z nodeRunner Preparing sandbox [worker #0, session #m3y69]\n',
'2021-12-06T16:36:08.855Z nodeRunner Prepared sandbox [worker #0, session #m3y69]\n',
'2021-12-06T16:36:08.855Z workers [worker #0, session #m3y69] Running tests in sandbox\n',
'2021-12-06T16:36:09.298Z workers Scheduling Jest Test Run (m3y69): 2021-12-06T16:36:08.859Z\n',
'2021-12-06T16:36:09.370Z workers [m3y69] Loaded unknown number of test(s)\n',
'2021-12-06T16:36:09.709Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:09.712Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:09.713Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:36:10.402Z workers [m3y69] Test executed: will compile a valid script\n',
'2021-12-06T16:36:11.092Z workers [m3y69] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:36:11.919Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:11.919Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:11.919Z project Test run was cancelled\n',
'2021-12-06T16:36:11.924Z workers [m3y69] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:11.924Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:11.924Z project Test run finished\n',
'2021-12-06T16:36:11.924Z project Test run data re-queued\n',
'2021-12-06T16:36:11.976Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:11.976Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:11.977Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:11.977Z nodeRunner Starting sandbox [worker #0, session #lv15k]\n',
'2021-12-06T16:36:11.977Z nodeRunner Preparing sandbox [worker #0, session #lv15k]\n',
'2021-12-06T16:36:11.977Z nodeRunner Prepared sandbox [worker #0, session #lv15k]\n',
'2021-12-06T16:36:11.977Z workers [worker #0, session #lv15k] Running tests in sandbox\n',
'2021-12-06T16:36:12.277Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:12.278Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:12.279Z project Test run was cancelled\n',
'2021-12-06T16:36:12.501Z workers Scheduling Jest Test Run (lv15k): 2021-12-06T16:36:11.979Z\n',
'2021-12-06T16:36:12.698Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:12.699Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:12.699Z project Test run was cancelled\n',
'2021-12-06T16:36:12.803Z workers Jest Test Run Complete (5u8y3): 2021-12-06T16:36:12.578Z\n',
'2021-12-06T16:36:12.816Z workers [lv15k] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:12.817Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:12.817Z project Test run finished\n',
'2021-12-06T16:36:12.817Z project Test run data re-queued\n',
'2021-12-06T16:36:12.855Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:12.855Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:12.855Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:12.855Z nodeRunner Starting sandbox [worker #0, session #5vrge]\n',
'2021-12-06T16:36:12.856Z nodeRunner Preparing sandbox [worker #0, session #5vrge]\n',
'2021-12-06T16:36:12.856Z nodeRunner Prepared sandbox [worker #0, session #5vrge]\n',
'2021-12-06T16:36:12.856Z workers [worker #0, session #5vrge] Running tests in sandbox\n',
'2021-12-06T16:36:13.192Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:13.193Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:13.193Z project Test run was cancelled\n',
'2021-12-06T16:36:13.325Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:13.326Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:13.326Z project Test run was cancelled\n',
'2021-12-06T16:36:13.452Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:13.452Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:13.452Z project Test run was cancelled\n',
'2021-12-06T16:36:13.551Z workers Scheduling Jest Test Run (5vrge): 2021-12-06T16:36:12.879Z\n',
'2021-12-06T16:36:13.591Z workers [5vrge] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:13.591Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:13.591Z project Test run finished\n',
'2021-12-06T16:36:13.592Z project Test run data re-queued\n',
'2021-12-06T16:36:13.607Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:13.607Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:13.608Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:13.608Z nodeRunner Starting sandbox [worker #0, session #e5z0a]\n',
'2021-12-06T16:36:13.608Z nodeRunner Preparing sandbox [worker #0, session #e5z0a]\n',
'2021-12-06T16:36:13.608Z nodeRunner Prepared sandbox [worker #0, session #e5z0a]\n',
'2021-12-06T16:36:13.608Z workers [worker #0, session #e5z0a] Running tests in sandbox\n',
'2021-12-06T16:36:14.220Z workers Jest Test Run Complete (lv15k): 2021-12-06T16:36:13.631Z\n',
'2021-12-06T16:36:14.223Z workers Scheduling Jest Test Run (e5z0a): 2021-12-06T16:36:13.801Z\n',
'2021-12-06T16:36:14.231Z workers [e5z0a] Loaded unknown number of test(s)\n',
'2021-12-06T16:36:14.434Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:14.435Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:14.435Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:36:15.076Z workers [e5z0a] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:36:15.077Z workers Jest Test Run Complete (fv3am): 2021-12-06T16:36:15.065Z\n',
'2021-12-06T16:36:15.079Z workers [e5z0a] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:15.079Z project Test run finished\n',
'2021-12-06T16:36:15.080Z project Processed console.log entries\n',
'2021-12-06T16:36:15.080Z project Processed loading sequences\n',
'2021-12-06T16:36:15.080Z project Processed executed tests\n',
'2021-12-06T16:36:15.081Z project Processed code coverage\n',
'2021-12-06T16:36:15.095Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:36:15.888Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:15.893Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:15.893Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:15.894Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:15.894Z nodeRunner Starting sandbox [worker #0, session #e7z6v]\n',
'2021-12-06T16:36:15.894Z nodeRunner Preparing sandbox [worker #0, session #e7z6v]\n',
'2021-12-06T16:36:15.894Z nodeRunner Prepared sandbox [worker #0, session #e7z6v]\n',
'2021-12-06T16:36:15.894Z workers [worker #0, session #e7z6v] Running tests in sandbox\n',
'2021-12-06T16:36:16.204Z workers Scheduling Jest Test Run (e7z6v): 2021-12-06T16:36:15.896Z\n',
'2021-12-06T16:36:16.236Z workers [e7z6v] Loaded unknown number of test(s)\n',
'2021-12-06T16:36:16.313Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:16.314Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:16.314Z project Test run was cancelled\n',
'2021-12-06T16:36:16.318Z workers [e7z6v] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:16.319Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:16.319Z project Test run finished\n',
'2021-12-06T16:36:16.319Z project Test run data re-queued\n',
'2021-12-06T16:36:16.368Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:16.368Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:16.368Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:16.368Z nodeRunner Starting sandbox [worker #0, session #ycbb9]\n',
'2021-12-06T16:36:16.368Z nodeRunner Preparing sandbox [worker #0, session #ycbb9]\n',
'2021-12-06T16:36:16.368Z nodeRunner Prepared sandbox [worker #0, session #ycbb9]\n',
'2021-12-06T16:36:16.368Z workers [worker #0, session #ycbb9] Running tests in sandbox\n',
'2021-12-06T16:36:16.841Z workers Scheduling Jest Test Run (ycbb9): 2021-12-06T16:36:16.371Z\n',
'2021-12-06T16:36:16.882Z workers [ycbb9] Loaded unknown number of test(s)\n',
'2021-12-06T16:36:16.916Z workers [ycbb9] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:36:16.916Z workers Jest Test Run Complete (e7z6v): 2021-12-06T16:36:16.862Z\n',
'2021-12-06T16:36:16.917Z workers [ycbb9] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:16.918Z project Test run finished\n',
'2021-12-06T16:36:16.918Z project Processed console.log entries\n',
'2021-12-06T16:36:16.918Z project Processed loading sequences\n',
'2021-12-06T16:36:16.918Z project Processed executed tests\n',
'2021-12-06T16:36:16.919Z project Processed code coverage\n',
'2021-12-06T16:36:16.923Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:36:17.330Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:17.331Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:17.332Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:36:34.390Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:34.393Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:34.394Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:34.394Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:34.394Z nodeRunner Starting sandbox [worker #0, session #p62r0]\n',
'2021-12-06T16:36:34.394Z nodeRunner Preparing sandbox [worker #0, session #p62r0]\n',
'2021-12-06T16:36:34.394Z nodeRunner Prepared sandbox [worker #0, session #p62r0]\n',
'2021-12-06T16:36:34.394Z workers [worker #0, session #p62r0] Running tests in sandbox\n',
'2021-12-06T16:36:34.702Z workers Scheduling Jest Test Run (p62r0): 2021-12-06T16:36:34.396Z\n',
'2021-12-06T16:36:34.713Z workers [p62r0] Loaded unknown number of test(s)\n',
'2021-12-06T16:36:35.210Z workers [p62r0] Test executed: will not provide debugStdin or debugStdout on regular requests\n',
'2021-12-06T16:36:35.214Z workers [p62r0] Run 1 test(s), skipped 0 test(s)\n',
'2021-12-06T16:36:35.215Z workers Jest Test Run Complete (p62r0): 2021-12-06T16:36:35.208Z\n',
'2021-12-06T16:36:35.216Z workers [p62r0] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:35.216Z project Test run finished\n',
'2021-12-06T16:36:35.216Z project Processed console.log entries\n',
'2021-12-06T16:36:35.216Z project Processed loading sequences\n',
'2021-12-06T16:36:35.216Z project Processed executed tests\n',
'2021-12-06T16:36:35.217Z project Processed code coverage\n',
'2021-12-06T16:36:35.222Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:36:35.295Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:35.296Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:35.297Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:36:37.309Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:37.317Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:37.317Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:37.318Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:37.318Z nodeRunner Starting sandbox [worker #0, session #7i2cj]\n',
'2021-12-06T16:36:37.318Z nodeRunner Preparing sandbox [worker #0, session #7i2cj]\n',
'2021-12-06T16:36:37.318Z nodeRunner Prepared sandbox [worker #0, session #7i2cj]\n',
'2021-12-06T16:36:37.318Z workers [worker #0, session #7i2cj] Running tests in sandbox\n',
'2021-12-06T16:36:37.512Z workers Scheduling Jest Test Run (7i2cj): 2021-12-06T16:36:37.321Z\n',
'2021-12-06T16:36:37.515Z workers Sandbox (active) [7i2cj] error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 85 | .expect(200);\n' +
' 86 | expect(res.body.errors).toBeUndefined();\n' +
'> 87 | expect(res.);\n' +
' | ^ SyntaxError: Unexpected token (87:19)\n' +
' 88 | expect(res.body.debugStdout).toBeUndefined();\n' +
' 89 | expect(res.body.debugStderr).toBeUndefined();\n' +
' 90 | }));\n',
'2021-12-06T16:36:37.518Z workers [7i2cj] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:36:37.519Z workers Jest Test Run Complete (7i2cj): 2021-12-06T16:36:37.510Z\n',
'2021-12-06T16:36:37.520Z workers [7i2cj] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:37.521Z workers Failed to map the stack to user code, entry message: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 85 | .expect(200);\n' +
' 86 | expect(res.body.errors).toBeUndefined();\n' +
'> 87 | expect(res.);\n' +
' | ^ SyntaxError: Unexpected token (87:19)\n' +
' 88 | expect(res.body.debugStdout).toBeUndefined();\n' +
' 89 | expect(res.body.debugStderr).toBeUndefined();\n' +
' 90 | }));, stack: Error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 85 | .expect(200);\n' +
' 86 | expect(res.body.errors).toBeUndefined();\n' +
'> 87 | expect(res.);\n' +
' | ^ SyntaxError: Unexpected token (87:19)\n' +
' 88 | expect(res.body.debugStdout).toBeUndefined();\n' +
' 89 | expect(res.body.debugStderr).toBeUndefined();\n' +
' 90 | }));\n' +
' at Object.formatInstrumentationError (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:29:31736)\n' +
' at s (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/runners/node/jest@24.8.0/initializer.js:15:1423)\n' +
' at TsJestTransformer.e.process (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/runners/node/jest@24.8.0/initializer.js:15:3031)\n' +
' at ScriptTransformer.transformSource (<rootDir>/node_modules/@jest/transform/build/ScriptTransformer.js:612:31)\n' +
' at ScriptTransformer._transformAndBuildScript (/workspace/cloud/compi\n',
'2021-12-06T16:36:37.521Z project Test run finished\n',
'2021-12-06T16:36:37.521Z project Processed console.log entries\n',
'2021-12-06T16:36:37.521Z project Processed loading sequences\n',
'2021-12-06T16:36:37.521Z project Processed executed tests\n',
'2021-12-06T16:36:37.522Z project Processed code coverage\n',
'2021-12-06T16:36:37.525Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:36:38.011Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:38.017Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:38.017Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:38.018Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:38.018Z nodeRunner Starting sandbox [worker #0, session #v54rg]\n',
'2021-12-06T16:36:38.018Z nodeRunner Preparing sandbox [worker #0, session #v54rg]\n',
'2021-12-06T16:36:38.018Z nodeRunner Prepared sandbox [worker #0, session #v54rg]\n',
'2021-12-06T16:36:38.018Z workers [worker #0, session #v54rg] Running tests in sandbox\n',
'2021-12-06T16:36:38.180Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:38.180Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:38.180Z project Test run was cancelled\n',
'2021-12-06T16:36:38.402Z workers Scheduling Jest Test Run (v54rg): 2021-12-06T16:36:38.026Z\n',
'2021-12-06T16:36:38.422Z workers [v54rg] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:38.422Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:38.422Z project Test run finished\n',
'2021-12-06T16:36:38.422Z project Test run data re-queued\n',
'2021-12-06T16:36:38.439Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:38.439Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:38.440Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:38.440Z nodeRunner Starting sandbox [worker #0, session #t2xjy]\n',
'2021-12-06T16:36:38.440Z nodeRunner Preparing sandbox [worker #0, session #t2xjy]\n',
'2021-12-06T16:36:38.440Z nodeRunner Prepared sandbox [worker #0, session #t2xjy]\n',
'2021-12-06T16:36:38.440Z workers [worker #0, session #t2xjy] Running tests in sandbox\n',
'2021-12-06T16:36:38.808Z workers Scheduling Jest Test Run (t2xjy): 2021-12-06T16:36:38.464Z\n',
'2021-12-06T16:36:38.828Z workers [t2xjy] Loaded unknown number of test(s)\n',
'2021-12-06T16:36:39.134Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:39.135Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:39.135Z project Test run was cancelled\n',
'2021-12-06T16:36:39.141Z workers [t2xjy] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:39.142Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:39.142Z project Test run finished\n',
'2021-12-06T16:36:39.142Z project Test run data re-queued\n',
'2021-12-06T16:36:39.190Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:39.191Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:39.191Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:39.191Z nodeRunner Starting sandbox [worker #0, session #wk7oy]\n',
'2021-12-06T16:36:39.191Z nodeRunner Preparing sandbox [worker #0, session #wk7oy]\n',
'2021-12-06T16:36:39.191Z nodeRunner Prepared sandbox [worker #0, session #wk7oy]\n',
'2021-12-06T16:36:39.191Z workers [worker #0, session #wk7oy] Running tests in sandbox\n',
'2021-12-06T16:36:39.308Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:39.309Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:39.309Z project Test run was cancelled\n',
'2021-12-06T16:36:39.638Z workers Scheduling Jest Test Run (wk7oy): 2021-12-06T16:36:39.194Z\n',
'2021-12-06T16:36:39.702Z workers [wk7oy] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:39.703Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:39.703Z project Test run finished\n',
'2021-12-06T16:36:39.703Z project Test run data re-queued\n',
'2021-12-06T16:36:39.720Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:39.720Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:39.721Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:39.721Z nodeRunner Starting sandbox [worker #0, session #oo437]\n',
'2021-12-06T16:36:39.721Z nodeRunner Preparing sandbox [worker #0, session #oo437]\n',
'2021-12-06T16:36:39.721Z nodeRunner Prepared sandbox [worker #0, session #oo437]\n',
'2021-12-06T16:36:39.721Z workers [worker #0, session #oo437] Running tests in sandbox\n',
'2021-12-06T16:36:40.013Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:40.013Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:40.013Z project Test run was cancelled\n',
'2021-12-06T16:36:40.125Z workers Scheduling Jest Test Run (oo437): 2021-12-06T16:36:39.801Z\n',
'2021-12-06T16:36:40.235Z workers Jest Test Run Complete (oo437): 2021-12-06T16:36:40.119Z\n',
'2021-12-06T16:36:40.235Z workers [oo437] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:40.235Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:40.235Z project Test run finished\n',
'2021-12-06T16:36:40.235Z project Test run data re-queued\n',
'2021-12-06T16:36:40.278Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:40.278Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:40.279Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:40.279Z nodeRunner Starting sandbox [worker #0, session #zgm1a]\n',
'2021-12-06T16:36:40.279Z nodeRunner Preparing sandbox [worker #0, session #zgm1a]\n',
'2021-12-06T16:36:40.279Z nodeRunner Prepared sandbox [worker #0, session #zgm1a]\n',
'2021-12-06T16:36:40.279Z workers [worker #0, session #zgm1a] Running tests in sandbox\n',
'2021-12-06T16:36:40.590Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:40.591Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:40.591Z project Test run was cancelled\n',
'2021-12-06T16:36:40.773Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:40.774Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:40.774Z project Test run was cancelled\n',
'2021-12-06T16:36:40.859Z workers Scheduling Jest Test Run (zgm1a): 2021-12-06T16:36:40.286Z\n',
'2021-12-06T16:36:40.909Z workers [zgm1a] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:40.909Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:40.909Z project Test run finished\n',
'2021-12-06T16:36:40.909Z project Test run data re-queued\n',
'2021-12-06T16:36:40.930Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:40.931Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:40.931Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:40.932Z nodeRunner Starting sandbox [worker #0, session #dr5ls]\n',
'2021-12-06T16:36:40.932Z nodeRunner Preparing sandbox [worker #0, session #dr5ls]\n',
'2021-12-06T16:36:40.932Z nodeRunner Prepared sandbox [worker #0, session #dr5ls]\n',
'2021-12-06T16:36:40.932Z workers [worker #0, session #dr5ls] Running tests in sandbox\n',
'2021-12-06T16:36:41.332Z workers Scheduling Jest Test Run (dr5ls): 2021-12-06T16:36:40.972Z\n',
'2021-12-06T16:36:41.388Z workers Sandbox (active) [dr5ls] error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 85 | .expect(200);\n' +
' 86 | expect(res.body.errors).toBeUndefined();\n' +
'> 87 | expect(res.);\n' +
' | ^ SyntaxError: Unexpected token (87:19)\n' +
' 88 | expect(res.body.debugStdout).toBeUndefined();\n' +
' 89 | expect(res.body.debugStderr).toBeUndefined();\n' +
' 90 | }));\n',
'2021-12-06T16:36:41.476Z workers [dr5ls] Run 0 test(s), skipped 0 test(s)\n',
'2021-12-06T16:36:41.477Z workers Jest Test Run Complete (dr5ls): 2021-12-06T16:36:41.328Z\n',
'2021-12-06T16:36:41.478Z workers [dr5ls] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:41.479Z workers Failed to map the stack to user code, entry message: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 85 | .expect(200);\n' +
' 86 | expect(res.body.errors).toBeUndefined();\n' +
'> 87 | expect(res.);\n' +
' | ^ SyntaxError: Unexpected token (87:19)\n' +
' 88 | expect(res.body.debugStdout).toBeUndefined();\n' +
' 89 | expect(res.body.debugStderr).toBeUndefined();\n' +
' 90 | }));, stack: Error: Failed to instrument src/WebApp/WebApp.test.ts\n' +
' 85 | .expect(200);\n' +
' 86 | expect(res.body.errors).toBeUndefined();\n' +
'> 87 | expect(res.);\n' +
' | ^ SyntaxError: Unexpected token (87:19)\n' +
' 88 | expect(res.body.debugStdout).toBeUndefined();\n' +
' 89 | expect(res.body.debugStderr).toBeUndefined();\n' +
' 90 | }));\n' +
' at Object.formatInstrumentationError (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:29:31736)\n' +
' at s (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/runners/node/jest@24.8.0/initializer.js:15:1423)\n' +
' at TsJestTransformer.e.process (<homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/runners/node/jest@24.8.0/initializer.js:15:3031)\n' +
' at ScriptTransformer.transformSource (<rootDir>/node_modules/@jest/transform/build/ScriptTransformer.js:612:31)\n' +
' at ScriptTransformer._transformAndBuildScript (/workspace/cloud/compi\n',
'2021-12-06T16:36:41.479Z project Test run finished\n',
'2021-12-06T16:36:41.479Z project Processed console.log entries\n',
'2021-12-06T16:36:41.479Z project Processed loading sequences\n',
'2021-12-06T16:36:41.479Z project Processed executed tests\n',
'2021-12-06T16:36:41.479Z project Processed code coverage\n',
'2021-12-06T16:36:41.486Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:36:41.710Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:41.711Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:41.712Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:36:42.451Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:42.457Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:42.457Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:42.457Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:42.457Z nodeRunner Starting sandbox [worker #0, session #nd2rc]\n',
'2021-12-06T16:36:42.457Z nodeRunner Preparing sandbox [worker #0, session #nd2rc]\n',
'2021-12-06T16:36:42.457Z nodeRunner Prepared sandbox [worker #0, session #nd2rc]\n',
'2021-12-06T16:36:42.457Z workers [worker #0, session #nd2rc] Running tests in sandbox\n',
'2021-12-06T16:36:42.642Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:42.643Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:42.643Z project Test run was cancelled\n',
'2021-12-06T16:36:42.822Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:42.823Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:42.823Z project Test run was cancelled\n',
'2021-12-06T16:36:42.908Z workers Scheduling Jest Test Run (nd2rc): 2021-12-06T16:36:42.460Z\n',
'2021-12-06T16:36:42.920Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:42.920Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:42.920Z project Test run was cancelled\n',
'2021-12-06T16:36:42.964Z workers [nd2rc] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:42.964Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:42.964Z project Test run finished\n',
'2021-12-06T16:36:42.964Z project Test run data re-queued\n',
'2021-12-06T16:36:42.981Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:42.981Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:42.982Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:42.983Z nodeRunner Starting sandbox [worker #0, session #vzbmc]\n',
'2021-12-06T16:36:42.983Z nodeRunner Preparing sandbox [worker #0, session #vzbmc]\n',
'2021-12-06T16:36:42.983Z nodeRunner Prepared sandbox [worker #0, session #vzbmc]\n',
'2021-12-06T16:36:42.983Z workers [worker #0, session #vzbmc] Running tests in sandbox\n',
'2021-12-06T16:36:43.342Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:43.343Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:43.343Z project Test run was cancelled\n',
'2021-12-06T16:36:43.492Z workers Scheduling Jest Test Run (vzbmc): 2021-12-06T16:36:43.024Z\n',
'2021-12-06T16:36:43.505Z workers [vzbmc] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:43.506Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:43.506Z project Test run finished\n',
'2021-12-06T16:36:43.506Z project Test run data re-queued\n',
'2021-12-06T16:36:43.552Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:43.553Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:43.553Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:43.553Z nodeRunner Starting sandbox [worker #0, session #6jsxg]\n',
'2021-12-06T16:36:43.553Z nodeRunner Preparing sandbox [worker #0, session #6jsxg]\n',
'2021-12-06T16:36:43.553Z nodeRunner Prepared sandbox [worker #0, session #6jsxg]\n',
'2021-12-06T16:36:43.553Z workers [worker #0, session #6jsxg] Running tests in sandbox\n',
'2021-12-06T16:36:43.642Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:43.644Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:43.644Z project Test run was cancelled\n',
'2021-12-06T16:36:43.849Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:43.850Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:43.850Z project Test run was cancelled\n',
'2021-12-06T16:36:44.030Z workers Scheduling Jest Test Run (6jsxg): 2021-12-06T16:36:43.569Z\n',
'2021-12-06T16:36:44.035Z workers Jest Test Run Complete (6jsxg): 2021-12-06T16:36:44.024Z\n',
'2021-12-06T16:36:44.035Z workers [6jsxg] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:44.035Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:44.035Z project Test run finished\n',
'2021-12-06T16:36:44.035Z project Test run data re-queued\n',
'2021-12-06T16:36:44.059Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:44.059Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:44.060Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:44.060Z nodeRunner Starting sandbox [worker #0, session #mdq7f]\n',
'2021-12-06T16:36:44.060Z nodeRunner Preparing sandbox [worker #0, session #mdq7f]\n',
'2021-12-06T16:36:44.060Z nodeRunner Prepared sandbox [worker #0, session #mdq7f]\n',
'2021-12-06T16:36:44.060Z workers [worker #0, session #mdq7f] Running tests in sandbox\n',
'2021-12-06T16:36:44.133Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:44.134Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:44.134Z project Test run was cancelled\n',
'2021-12-06T16:36:44.277Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:44.278Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:44.536Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:44.537Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:44.537Z project Test run was cancelled\n',
'2021-12-06T16:36:44.670Z workers Scheduling Jest Test Run (mdq7f): 2021-12-06T16:36:44.065Z\n',
'2021-12-06T16:36:44.899Z workers [mdq7f] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:44.899Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:44.899Z project Test run finished\n',
'2021-12-06T16:36:44.899Z project Test run data re-queued\n',
'2021-12-06T16:36:44.928Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:44.936Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:44.937Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:44.937Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:44.937Z nodeRunner Starting sandbox [worker #0, session #n3w3c]\n',
'2021-12-06T16:36:44.937Z nodeRunner Preparing sandbox [worker #0, session #n3w3c]\n',
'2021-12-06T16:36:44.937Z nodeRunner Prepared sandbox [worker #0, session #n3w3c]\n',
'2021-12-06T16:36:44.937Z workers [worker #0, session #n3w3c] Running tests in sandbox\n',
'2021-12-06T16:36:45.171Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:45.172Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:45.172Z project Test run was cancelled\n',
'2021-12-06T16:36:45.305Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:45.305Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:45.306Z project Test run was cancelled\n',
'2021-12-06T16:36:45.701Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:45.702Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:45.702Z project Test run was cancelled\n',
'2021-12-06T16:36:45.885Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:45.886Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:45.886Z project Test run was cancelled\n',
'2021-12-06T16:36:45.973Z workers Scheduling Jest Test Run (n3w3c): 2021-12-06T16:36:45.142Z\n',
'2021-12-06T16:36:46.054Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:46.054Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:46.054Z project Test run was cancelled\n',
'2021-12-06T16:36:46.146Z workers [n3w3c] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:46.146Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:46.146Z project Test run finished\n',
'2021-12-06T16:36:46.146Z project Test run data re-queued\n',
'2021-12-06T16:36:46.163Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:46.163Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:46.164Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:46.164Z nodeRunner Starting sandbox [worker #0, session #905x6]\n',
'2021-12-06T16:36:46.164Z nodeRunner Preparing sandbox [worker #0, session #905x6]\n',
'2021-12-06T16:36:46.164Z nodeRunner Prepared sandbox [worker #0, session #905x6]\n',
'2021-12-06T16:36:46.164Z workers [worker #0, session #905x6] Running tests in sandbox\n',
'2021-12-06T16:36:46.214Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:46.218Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:46.218Z project Test run was cancelled\n',
'2021-12-06T16:36:46.488Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:46.491Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
'2021-12-06T16:36:46.492Z project Test run was cancelled\n',
'2021-12-06T16:36:47.220Z workers Scheduling Jest Test Run (905x6): 2021-12-06T16:36:46.666Z\n',
'2021-12-06T16:36:47.271Z workers [905x6] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:47.271Z project Test run cancelled, re-queueing run data\n',
'2021-12-06T16:36:47.271Z project Test run finished\n',
'2021-12-06T16:36:47.271Z project Test run data re-queued\n',
'2021-12-06T16:36:47.308Z project Test run started; run priority: 2\n',
'2021-12-06T16:36:47.308Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:36:47.309Z workers Starting test run, priority: 2\n',
'2021-12-06T16:36:47.309Z nodeRunner Starting sandbox [worker #0, session #89wok]\n',
'2021-12-06T16:36:47.309Z nodeRunner Preparing sandbox [worker #0, session #89wok]\n',
'2021-12-06T16:36:47.309Z nodeRunner Prepared sandbox [worker #0, session #89wok]\n',
'2021-12-06T16:36:47.309Z workers [worker #0, session #89wok] Running tests in sandbox\n',
'2021-12-06T16:36:47.444Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:47.448Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:36:47.449Z extended-core File was not changed, but file markers may need to be synced\n',
'2021-12-06T16:36:47.989Z workers Scheduling Jest Test Run (89wok): 2021-12-06T16:36:47.539Z\n',
'2021-12-06T16:36:48.033Z workers [89wok] Loaded unknown number of test(s)\n',
'2021-12-06T16:36:49.362Z workers [89wok] Test executed: will compile a valid script\n',
'2021-12-06T16:36:50.000Z workers [89wok] Test executed: will compile a valid script and return source with noddable\n',
'2021-12-06T16:36:50.810Z workers [89wok] Run 2 test(s), skipped 0 test(s)\n',
'2021-12-06T16:36:50.810Z workers Jest Test Run Complete (nd2rc): 2021-12-06T16:36:50.804Z\n',
'2021-12-06T16:36:50.812Z workers [89wok] Sandbox is responsive, closing it\n',
'2021-12-06T16:36:50.813Z project Test run finished\n',
'2021-12-06T16:36:50.813Z project Processed console.log entries\n',
'2021-12-06T16:36:50.813Z project Processed loading sequences\n',
'2021-12-06T16:36:50.813Z project Processed executed tests\n',
'2021-12-06T16:36:50.814Z project Processed code coverage\n',
'2021-12-06T16:36:50.824Z project Test run result processed and sent to IDE\n',
'2021-12-06T16:36:51.159Z workers Sandbox (inactive) [89wok] error: process.exit called with 1\n',
'2021-12-06T16:36:51.162Z workers Sandbox (inactive) [89wok] error: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLo'... 23291 more characters,
'2021-12-06T16:36:51.163Z workers Jest cache corrupted: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.319/wallabyf40b6f/server.js:27\n' +
'},_areLogEntryMessagesEqual:function(e,t){return void 0===e&&(e=""),void 0===t&&(t=""),e===t||(c._opts.testFramework&&c._opts.testFramework.version&&0===c._opts.testFramework.version.indexOf("mocha")?e.indexOf(":")>0&&_.contains(e,t)||t.indexOf(":")>0&&_.contains(t,e):void 0)},intermediateComplete:function(){c.reportIntermediateResult&&c.reportIntermediateResult(c._createRunResult(this))},trace:function(e){var t=this;this._trace=e.trace,this._trace&&_.each(this._trace.callStack,function(e){e.delayStackMapping=!0,t._notMappedStackEntries.push(e)})},complete:function(t){var n=this;clearTimeout(this._closeByErrorTimeout),clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),clearTimeout(this._globalSetupCompleteTimeout),this._completed=!0,n._onFinished(),this._dispose(function(){c.cancelled(i)?o({runCancelled:!0}):s({session:n,time:t&&t.time})}),h("[%s] Run %s test(s), skipped %s test(s)",e,(this._tests||[]).length-this._skipped,this._skipped)},globalSetupComplete:function(e){a&&(this._globalSetupDoneCalled=!0,a(e))},globalError:function(t){c._handleError(this,e,t.message,t.stack,t.declaration,t.actual,t.expected,t.snapshot,t.allowNotMappedStackLines,t.testFilePath)},programScopeStart:function(e){this._executingFiles[e]=1,this._setTimeoutForLongRunningOperation()},programScopeEnd:function(e){delete this._executingFiles[e],_.isEmpty(this._executingFiles)&&!this._executingTest&&(clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout))},preTest:function(e){this._setTimeoutForLongRunningOperation(),this._executingTest=e},postTest:function(){delete this._executingTest},_setTimeoutForLongRunningOperation:function(){if(!process.env.quokka){var e=this,t=function(e){console.warn(e),h(e)};clearTimeout(this._longRunningWarningTimeout),clearTimeout(this._longRunningPingTimeout),this._longRunningWarningTimeout=setTimeout(function(){var i="Some long running code has been detected: ",n=e._executingTest,s=!_.isEmpty(e._executingFiles);if(i+=(n?\'test "\'+n+\'"\':"one of your "+(s?"files":"tests"))+" is taking more than "+c._longExecutingWarningTimeout+"ms to execute.",s&&(i+="\\nExecution of the following files has started but has not finished:",_.each(e._executingFiles,function(e,t){var n=c._project._getFileMetadataById(t);i+="\\n- "+(n?n.path:"unknown")})),e._log.length&&(i+="\\nThe last recorded console.log: "+_.last(e._log).text),n||s){i+="\\nTry commenting out the test or excluding the test file from the `tests` list in your wallaby config,\\nand restarting wallaby to make sure that it is this test/file causing the issue and not something else.",n&&(i+="\\nAlso review your recent changes to the code that the test covers, as well as its `before` and `after` hooks."),i+="\\nPinging test runner sandbox...";try{r.ping(function(){clearTimeout(e._longRunningPingTimeout),e.active()&&t("Sandbox is responsive. The issue may be asynchronous in nature (for example, a missing callback).")}),e._longRunningPingTimeout=setTimeout(function(){t("The sandbox is not responsive. Check for possibly recently introduced infinite loops.")},c._longExecutingPingTimeout)}catch(o){i+="\\nThe sandbox ping failed: "+o.message}}t(i)},c._longExecutingWarningTimeout)}},module:function(e){c._project._emitInternal({type:"moduleLoaded",path:e.path,session:this})},test:function(t){var i=this;return delete this._executingTest,clearTimeout(this._closeByErrorTimeout),this._setTimeoutForLongRunningOperation(),t.hook&&t.log?(c._processTestLog(t.log),_.isString(t.hook)&&_.each(t.log,function(e){e.message=t.hook+(e.message?": ":"")+e.message}),void(this._globalErrors=this._globalErrors.concat(t.log))):("disabled"!==t.status?(h("[%s] Test executed: "+t.name,e),c._processTestLog(t.log),t.log&&_.each(t.log,function(e){return i.addToTestLog(e)}),this._executingTestLog.length&&(t.log=this._executingTestLog.slice()),_.isUndefined(t.slow)&&(t.slow=t.time>c._opts.slowTestThreshold),t.slow=t.slow||void 0,this._executingTestLog.length=0,++c._executedTestNumber%50||console.log("Execution progress: "+c._executedTestNumber+" tests"),process.env.WALLABY_INTEGRATION_TEST_RUN&&(t.time=1)):(this._skipped++,c._processTestLog(t.log)),void this._tests.push(t))},coverage:function(e){this._coverage[e.id]=e.ranges},fileChange:function(e){this._fileChanges.push(e)},console:function(e){var t=c._opts.maxConsoleMessagesPerTest,i=this._messagesPerTest[e.spec]=(this._messagesPerTest[e.spec]||0)+1;if(i===t+1)console.warn("Number of console messages per test exceeded maximum allowed value ("+t+"), current test console messages recording stopped.\\nYou may increase the limit by adding `maxConsoleMessagesPerTest` setting to your config file.");else if(i<=t)if(this._log.push(e),e.valueBag&&e.valueBag.data&&e.valueBag.data.props){var r=e.valueBag.data,s=r.props[0];if(s.callStack){c._mapStackEntries(s.callStack);var o;if(s.callStack.replaceFirstEntryLine){var a=n({},e);c._project.resolveLogEntryRange(a),o=a.range&&a.range[0]}s.props=s.callStack.stack.map(function(e,t){var i=e[0],n=t>0||!o?e[1]:o,r=c._project.stackEntryByFileIdWithoutLineMapping(i,n);if(r){var a=s.callStack.context[t]||"...";return{id:s.id+",se"+t,target:r,callStackEntryNode:!0,label:{name:a,description:l.basename(r.file)+":"+n},disallowToCopyPath:!0,disallowToCopyData:!0}}}).filter(function(e){return!!e})}}else if(c._mapConsoleMessagesStackTrace&&e.text&&e.text.length){var u=/^\\s*at .*$/gm;if(u.test(e.text)){var h={stack:e.text,suppressErrorReporting:!0};if(c._mapStackEntries(h),h.stack.length){var p=!1;e.text=e.text.split("\\n").reduce(function(e,t){if(t.trimStart().startsWith("at ")){if(!p){var i=t.substr(0,t.indexOf("at "));h.stack.map(function(t,n){var r=t[0],s=t[1],o=c._project.stackEntryByFileIdWithoutLineMapping(r,s);if(o){var a=h.context[n]||"...";e.push(i+"at "+a+" ("+l.basename(o.file)+":"+s+")")}}),p=!0}}else e.push(t);return e},[]).join("\\n")}}}c.reportConsoleOutput(e)},resume:function(){h("Sandbox requested early screen shot capture"),this._onFinished(),this._onFinished=_.noop,r.resume()},reject:function(e){this._disposing||this._dispose(function(){o(c.cancelled(i)?{runCancelled:!0}:e)})},recycleWorker:function(){c.recycleWorker(t)},_dispose:function(i){var n=this;n._disposing=!0,clearTimeout(n._closeByErrorTimeout),clearTimeout(n._longRunningWarningTimeout),clearTimeout(n._longRunningPingTimeout);var s=c._workerPendingCleanup[t]={onDone:[]},o=!1,a=!1,l=function(n){a=!0,o&&clearTimeout(o),delete c._sessions[e],s.onDone&&(s.onDone.forEach(function(e){return e(n)}),s.onDone.length=0),delete c._workerPendingCleanup[t],i()},u=function(){a||(h("[%s] Sandbox is not responsive, recycling worker instance",e),c._tryClosingSandbox(r.close,e),c.recycleWorker(t),l(!0))};if(!n._globalSetup||n._completed||void 0!==c._opts.globalSetupTeardownTimeoutRecycle&&!c._opts.globalSetupTeardownTimeoutRecycle)if(n._globalSetup&&n._completed&&!n._globalSetupDoneCalled)console.error("[%s] Error running Global Setup, recycling worker.",e),u();else if(n._globalSetup&&n._completed&&n._globalErrors.length>0)console.error("[%s] Error running Global Teardown, recycling worker.",e),u();else try{var p=c._workerPingTimeoutOverride[t]||c._unresponsiveStandardTimeout;o=setTimeout(function(){u()},p),r.ping(function(){if(!a){clearTimeout(o),h("[%s] Sandbox is responsive, closing it",e);var t=setTimeout(function(){console.error("[%s] Wallaby Teardown did not complete in %sms, recycling worker.",e,c._globalSetupTeardownTimeout),u()},c._globalSetupTeardownTimeout);c._tryClosingSandbox(r.close,e,function(e){a||(clearTimeout(t),e?l():u())})}})}catch(f){return h("[%s] Sandbox can not be pinged: %s",e,f&&f.message),void u()}else console.log("[%s] Global Setup and Teardown is not complete, waiting for %sms before recycling worker",e,c._globalSetupTeardownTimeout),n._globalSetupCompleteTimeout=setTimeout(function(){console.error("[%s] Global Setup and Teardown did not complete, recycling worker.",e),u()},c._globalSetupTeardownTimeout)}}},_tryClosingSandbox:function(e,t,i){i=i||function(){};try{e(i)}catch(n){h("[%s] Sandbox closing error, %s",t,n.message)}},_corruptedCache:function(e){return e&&e.match(/evaluating \'[a-z]\\.\\$_\\$coverage\\[/)},_corruptedJestCache:function(e,t){if(this._zeroConfigJest&&e&&"string"==typeof e&&t&&"string"==typeof t&&~e.indexOf("Cannot read property \'0\' of undefined")){var i=t.split("\\n").map(function(e){return e.trim()});if(i.length>1&&~i[1].toLowerCase().indexOf("server.js"))return!0}return!1},_processTestLog:function(e,t){var i=this;_.each(e,function(e){var n=e.message&&e.message.indexOf(" in file:///")||-1;~n&&(e.message=e.message.substring(0,n)),i._corruptedCache(e.message)&&(i._project.invalidateCache(),e.message=g),i._removeAnsi(e),i._mapStackEntries(e,t),process.env.quokka&&e.message&&(e.message=e.message.replace(i._normalizedLocalRoot,".").replace(i._project._localRoot,"."))})},_mapStackEntries:function(e,t){var i=this,n=d.length;if(e.stack&&_.isString(e.stack)&&!e.delayStackMapping){var r,s,a=[],l={},c=e.stack.split("\\n");c&&i._corruptedCache(c[0])&&(i._project.invalidateCache(),e.message=g),_.each(c,function(e){var c=e.lastIndexOf(d);if(~c){var h=e.substr(c+n).split(":");if(h.length>=2){var p=parseInt(h[1],10);r=i._project.stackEntryByFileId(parseInt(h[0],10)||h[0],p,parseInt(h[2],10)),r&&r.line?(s=i._extractBrowserStackLineContext(e),s&&(l[a.length]=s),a.push([r.file,r.line])):r&&t&&a.push([r.file,p])}}else if(process.env.quokka){if(process.env.quokka){var f=e.indexOf("file:")!==-1;if(e=i._project.normalizePath(e),f){var g=e.split("?session=");if(g.length>1){var v=g[1].split(":");3===v.length&&(v[0]=""),e=g[0]+v.join(":")}}if(_.contains(e,i._normalizedWallabyServerPath)){if(_.contains(e,"quokkaStackTraceMarker"))return!1}else{var y,m,b=e;e=e.replace(i._normalizedLocalRoot,".");var k;if(b!==e?(k=b.lastIndexOf(i._normalizedLocalRoot),j=e'... 23614 more characters,
'2021-12-06T16:37:03.642Z fs File changed in editor: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:37:03.648Z project Test run started; run priority: 2\n',
'2021-12-06T16:37:03.648Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
'2021-12-06T16:37:03.649Z workers Starting test run, priority: 2\n',
'2021-12-06T16:37:03.649Z nodeRunner Starting sandbox [worker #0, session #i23ql]\n',
'2021-12-06T16:37:03.649Z nodeRunner Preparing sandbox [worker #0, session #i23ql]\n',
'2021-12-06T16:37:03.649Z nodeRunner Prepared sandbox [worker #0, session #i23ql]\n',
'2021-12-06T16:37:03.649Z workers [worker #0, session #i23ql] Running tests in sandbox\n',
'2021-12-06T16:37:03.650Z project Test run finished\n',
'2021-12-06T16:37:04.591Z fs File changed: src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:37:04.592Z fs No changes detected for src/WebApp/WebApp.test.ts\n',
'2021-12-06T16:37:04.592Z extended-core File was not changed, but file markers may need to be synced\n'
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment