wallabyjs / public

Repository for Wallaby.js questions and issues
http://wallabyjs.com
760 stars 45 forks source link

Wallaby with vitest not executing #3419

Closed azaeng04 closed 5 days ago

azaeng04 commented 6 days ago

Issue description or question

Tests not executing with Vitest.

Executing npx vitest works as expected

Wallaby diagnostics report

{
  editorVersion: '1.95.1',
  pluginVersion: '1.0.393',
  editorType: 'VSCode',
  osVersion: 'darwin 24.1.0',
  nodeVersion: 'v20.11.1',
  coreVersion: '1.0.1631',
  pnp: '<not set>',
  pnpEsm: '<not set>',
  checksum: 'ZDY0MGI5Njc5MWM0MmFiZjBlYTQzMTg4MjJlZjQ4ZGYsMTc1MTUwMDgwMDAwMCww',
  config: {
    diagnostics: {
      vitest: {
        config: {
          config: {
            allowOnly: true,
            isolate: true,
            watch: true,
            globals: true,
            environment: 'happy-dom',
            pool: 'vmThreads',
            clearMocks: false,
            restoreMocks: false,
            mockReset: false,
            unstubGlobals: false,
            unstubEnvs: false,
            include: [ '**/*.spec.ts' ],
            exclude: [ '**/node_modules/**', '**/dist/**', '**/build/**', '.stryker-tmp/**', 'playwright/**' ],
            teardownTimeout: 10000,
            forceRerunTriggers: [ '**/package.json/**', '**/{vitest,vite}.config.*/**', '<homeDir>/projects/projects/todomvc-angular/src/test-setup.ts' ],
            update: false,
            reporters: [ [ 'default', {} ] ],
            silent: false,
            hideSkippedTests: false,
            api: { middlewareMode: true },
            ui: false,
            uiBase: '/__vitest__/',
            open: true,
            css: { include: [], modules: { classNameStrategy: 'stable' } },
            coverage: {
              provider: 'v8',
              enabled: false,
              all: true,
              clean: true,
              cleanOnRerun: true,
              reportsDirectory: './coverage',
              exclude: [
                'coverage/**',
                'dist/**',
                '**/node_modules/**',
                '**/[.]**',
                'packages/*/test?(s)/**',
                '**/*.d.ts',
                '**/virtual:*',
                '**/__x00__*',
                '**/\x00*',
                'cypress/**',
                'test?(s)/**',
                'test?(-*).?(c|m)[jt]s?(x)',
                '**/*{.,-}{test,spec,bench,benchmark}?(-d).?(c|m)[jt]s?(x)',
                '**/__tests__/**',
                '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*',
                '**/vitest.{workspace,projects}.[jt]s?(on)',
                '**/.{eslint,mocha,prettier}rc.{?(c|m)js,yml}',
                'src/test-setup.ts'
              ],
              reportOnFailure: false,
              reporter: [ [ 'text', {} ], [ 'html', {} ], [ 'clover', {} ], [ 'json', {} ] ],
              extension: [
                '.js',     '.cjs',
                '.mjs',    '.ts',
                '.mts',    '.tsx',
                '.jsx',    '.vue',
                '.svelte', '.marko',
                '.astro'
              ],
              allowExternal: false,
              excludeAfterRemap: false,
              ignoreEmptyLines: true,
              processingConcurrency: 10
            },
            fakeTimers: { loopLimit: 10000, shouldClearNativeTimers: true, toFake: [ 'setTimeout', 'clearTimeout', 'setInterval', 'clearInterval', 'setImmediate', 'clearImmediate', 'Date' ] },
            maxConcurrency: 5,
            dangerouslyIgnoreUnhandledErrors: false,
            typecheck: {
              checker: 'tsc',
              include: [ '**/*.{test,spec}-d.?(c|m)[jt]s?(x)' ],
              exclude: [
                '**/node_modules/**',
                '**/dist/**',
                '**/cypress/**',
                '**/.{idea,git,cache,output,temp}/**',
                '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*'
              ],
              enabled: false
            },
            slowTestThreshold: 300,
            disableConsoleIntercept: false,
            setupFiles: [ '<homeDir>/projects/projects/todomvc-angular/src/test-setup.ts' ],
            poolOptions: { threads: {}, forks: {} },
            server: {
              deps: {
                inline: [ '@analogjs/router', '@analogjs/vitest-angular/setup-zone', {}, {}, {}, {} ],
                inlineFiles: [ '<homeDir>/projects/projects/todomvc-angular/src/test-setup.ts', 'file://<homeDir>/projects/projects/todomvc-angular/src/test-setup.ts' ],
                moduleDirectories: [ '/node_modules/' ],
                cacheDir: 'node_modules/.vite'
              }
            },
            config: '<homeDir>/projects/projects/todomvc-angular/vite.config.mts',
            defines: {},
            root: '<homeDir>/projects/projects/todomvc-angular',
            mode: 'test',
            provide: {},
            inspector: { enabled: false, waitForDebugger: false },
            clearScreen: true,
            browser: {
              enabled: false,
              headless: false,
              isolate: true,
              fileParallelism: true,
              ui: true,
              screenshotFailures: false,
              viewport: { width: 414, height: 896 },
              locators: { testIdAttribute: 'data-testid' },
              api: { port: 63315 }
            },
            fileParallelism: true,
            expect: {},
            deps: {
              moduleDirectories: [ '/node_modules/' ],
              optimizer: { ssr: { enabled: true }, web: { enabled: true } },
              web: { transformAssets: true, transformCss: true, transformGlobPattern: [] }
            },
            globalSetup: [],
            snapshotOptions: { expand: false, snapshotFormat: {}, updateSnapshot: 'new', snapshotEnvironment: null },
            snapshotSerializers: [],
            poolMatchGlobs: [],
            cache: { dir: '<homeDir>/projects/projects/todomvc-angular/node_modules/.vite/vitest' },
            sequence: { hooks: 'stack' },
            environmentMatchGlobs: [],
            testTransformMode: {},
            testTimeout: 5000,
            hookTimeout: 10000
          },
          projects: [
            {
              path: '<homeDir>/projects/projects/todomvc-angular',
              config: {
                allowOnly: true,
                isolate: true,
                watch: true,
                globals: true,
                environment: 'happy-dom',
                pool: 'vmThreads',
                clearMocks: false,
                restoreMocks: false,
                mockReset: false,
                unstubGlobals: false,
                unstubEnvs: false,
                include: [ '**/*.spec.ts' ],
                exclude: [ '**/node_modules/**', '**/dist/**', '**/build/**', '.stryker-tmp/**', 'playwright/**' ],
                teardownTimeout: 10000,
                forceRerunTriggers: [ '**/package.json/**', '**/{vitest,vite}.config.*/**', '<homeDir>/projects/projects/todomvc-angular/src/test-setup.ts' ],
                update: false,
                reporters: [ [ 'default', {} ] ],
                silent: false,
                hideSkippedTests: false,
                api: { middlewareMode: true },
                ui: false,
                uiBase: '/__vitest__/',
                open: true,
                css: { include: [], modules: { classNameStrategy: 'stable' } },
                coverage: {
                  provider: 'v8',
                  enabled: false,
                  all: true,
                  clean: true,
                  cleanOnRerun: true,
                  reportsDirectory: './coverage',
                  exclude: [
                    'coverage/**',
                    'dist/**',
                    '**/node_modules/**',
                    '**/[.]**',
                    'packages/*/test?(s)/**',
                    '**/*.d.ts',
                    '**/virtual:*',
                    '**/__x00__*',
                    '**/\x00*',
                    'cypress/**',
                    'test?(s)/**',
                    'test?(-*).?(c|m)[jt]s?(x)',
                    '**/*{.,-}{test,spec,bench,benchmark}?(-d).?(c|m)[jt]s?(x)',
                    '**/__tests__/**',
                    '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*',
                    '**/vitest.{workspace,projects}.[jt]s?(on)',
                    '**/.{eslint,mocha,prettier}rc.{?(c|m)js,yml}',
                    'src/test-setup.ts'
                  ],
                  reportOnFailure: false,
                  reporter: [ [ 'text', {} ], [ 'html', {} ], [ 'clover', {} ], [ 'json', {} ] ],
                  extension: [
                    '.js',     '.cjs',
                    '.mjs',    '.ts',
                    '.mts',    '.tsx',
                    '.jsx',    '.vue',
                    '.svelte', '.marko',
                    '.astro'
                  ],
                  allowExternal: false,
                  excludeAfterRemap: false,
                  ignoreEmptyLines: true,
                  processingConcurrency: 10
                },
                fakeTimers: { loopLimit: 10000, shouldClearNativeTimers: true, toFake: [ 'setTimeout', 'clearTimeout', 'setInterval', 'clearInterval', 'setImmediate', 'clearImmediate', 'Date' ] },
                maxConcurrency: 5,
                dangerouslyIgnoreUnhandledErrors: false,
                typecheck: {
                  checker: 'tsc',
                  include: [ '**/*.{test,spec}-d.?(c|m)[jt]s?(x)' ],
                  exclude: [
                    '**/node_modules/**',
                    '**/dist/**',
                    '**/cypress/**',
                    '**/.{idea,git,cache,output,temp}/**',
                    '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*'
                  ],
                  enabled: false
                },
                slowTestThreshold: 300,
                disableConsoleIntercept: false,
                setupFiles: [ '<homeDir>/projects/projects/todomvc-angular/src/test-setup.ts' ],
                poolOptions: { threads: {}, forks: {} },
                server: {
                  deps: {
                    inline: [ '@analogjs/router', '@analogjs/vitest-angular/setup-zone', {}, {}, {}, {} ],
                    inlineFiles: [ '<homeDir>/projects/projects/todomvc-angular/src/test-setup.ts', 'file://<homeDir>/projects/projects/todomvc-angular/src/test-setup.ts' ],
                    moduleDirectories: [ '/node_modules/' ],
                    cacheDir: 'node_modules/.vite'
                  }
                },
                config: '<homeDir>/projects/projects/todomvc-angular/vite.config.mts',
                defines: {},
                root: '<homeDir>/projects/projects/todomvc-angular',
                mode: 'test',
                provide: {},
                inspector: { enabled: false, waitForDebugger: false },
                clearScreen: true,
                browser: {
                  enabled: false,
                  headless: false,
                  isolate: true,
                  fileParallelism: true,
                  ui: true,
                  screenshotFailures: false,
                  viewport: { width: 414, height: 896 },
                  locators: { testIdAttribute: 'data-testid' },
                  api: { port: 63315 }
                },
                fileParallelism: true,
                expect: {},
                deps: {
                  moduleDirectories: [ '/node_modules/' ],
                  optimizer: { ssr: { enabled: true }, web: { enabled: true } },
                  web: { transformAssets: true, transformCss: true, transformGlobPattern: [] }
                },
                globalSetup: [],
                snapshotOptions: { expand: false, snapshotFormat: {}, updateSnapshot: 'new', snapshotEnvironment: null },
                snapshotSerializers: [],
                poolMatchGlobs: [],
                cache: { dir: '<homeDir>/projects/projects/todomvc-angular/node_modules/.vite/vitest' },
                sequence: { hooks: 'stack' },
                environmentMatchGlobs: [],
                testTransformMode: {},
                testTimeout: 5000,
                hookTimeout: 10000
              }
            }
          ],
          package: {
            version: '2.1.4',
            urls: { hooks: 'file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/hooks.mjs' },
            paths: {
              root: '<homeDir>/projects/projects/todomvc-angular/node_modules/vitest',
              dist: '<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist'
            }
          }
        }
      }
    },
    testFramework: { version: 'vitest@0.14.0', configurator: 'vitest@0.14.0', reporter: 'vitest@0.14.0', starter: 'vitest@0.14.0', autoDetected: true },
    preserveComments: false,
    extractComments: true,
    files: [
      { pattern: '**/*.spec.ts', ignore: true, trigger: true, load: true, file: true },
      { pattern: '**/node_modules/**', ignore: true, trigger: true, load: true, file: true, test: true },
      { pattern: '**/dist/**', ignore: true, trigger: true, load: true, file: true, test: true },
      { pattern: '**/build/**', ignore: true, trigger: true, load: true, file: true, test: true },
      { pattern: '.stryker-tmp/**', ignore: true, trigger: true, load: true, file: true },
      { pattern: 'playwright/**', ignore: true, trigger: true, load: true, file: true },
      { pattern: '**/*.timestamp-*', ignore: true, trigger: true, load: true, file: true },
      { pattern: '**/*.*', ignore: false, trigger: true, load: true, order: 1 }
    ],
    tests: [
      { pattern: '**/node_modules/**', ignore: true, trigger: true, load: true, test: true, file: false },
      { pattern: '**/dist/**', ignore: true, trigger: true, load: true, test: true, file: false },
      { pattern: '**/build/**', ignore: true, trigger: true, load: true, test: true, file: false },
      { pattern: '.stryker-tmp/**', ignore: true, trigger: true, load: true, test: true, file: false },
      { pattern: 'playwright/**', ignore: true, trigger: true, load: true, test: true, file: false },
      { pattern: '**/*.spec.ts', ignore: false, trigger: true, load: true, test: true, order: 2 }
    ],
    workers: { initial: 1, regular: 1, recycle: false },
    dot: true,
    captureConsoleLog: true,
    filesWithNoCoverageCalculated: [],
    runAllTestsInAffectedTestFile: false,
    updateNoMoreThanOneSnapshotPerTestFileRun: false,
    compilers: {},
    logLimits: { inline: { depth: 5, elements: 5000 }, values: { default: { stringLength: 8192 }, autoExpand: { elements: 5000, stringLength: 8192, depth: 10 } } },
    preprocessors: {},
    maxConsoleMessagesPerTest: 100,
    maxTraceSteps: 999999,
    maxTraceStepsForWatchExpressionPrefetch: 10,
    autoConsoleLog: true,
    delays: { run: 0, edit: 100, update: 0 },
    teardown: undefined,
    hints: {
      ignoreCoverage: '__REGEXP /ignore coverage|istanbul ignore|c8 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: '<homeDir>/.nvm/versions/node/v20.11.1/bin/node',
      viewportSize: { width: 800, height: 600 },
      options: { width: 800, height: 600 },
      bundle: true
    },
    reportUnhandledPromises: true,
    slowTestThreshold: 75,
    lowCoverageThreshold: 80,
    runAllTestsWhenNoAffectedTests: false,
    symlinkNodeModules: undefined,
    configCode: '\n' +
      'module.exports = () => ({\n' +
      '  autoDetect: true,\n' +
      "  // files: ['vite.config.mts', 'src/**/*.ts', '!src/**/*.spec.ts'],\n" +
      "  // tests: ['src/**/*.spec.ts'],\n" +
      '  // testFramework: {\n' +
      "  //   configFile: './vite.config.mts'\n" +
      '  // }\n' +
      '});\n'
  },
  packageJSON: {
    dependencies: {
      '@angular/animations': '^18.2.10',
      '@angular/common': '^18.2.10',
      '@angular/compiler': '^18.2.10',
      '@angular/core': '^18.2.10',
      '@angular/forms': '^18.2.10',
      '@angular/platform-browser': '^18.2.10',
      '@angular/platform-browser-dynamic': '^18.2.10',
      '@angular/router': '^18.2.10',
      '@ngrx/store': '^18.1.1',
      '@ngrx/store-devtools': '^18.1.1',
      rxjs: '~7.5.5',
      'todomvc-app-css': '~2.4.2',
      uuid: '~8.3.2',
      'zone.js': '~0.14.10'
    },
    devDependencies: {
      '@analogjs/platform': '^1.9.2',
      '@analogjs/vite-plugin-angular': '^1.9.2',
      '@analogjs/vitest-angular': '^1.9.2',
      '@angular-eslint/builder': '18.4.0',
      '@angular-eslint/eslint-plugin': '18.4.0',
      '@angular-eslint/eslint-plugin-template': '18.4.0',
      '@angular-eslint/schematics': '18.4.0',
      '@angular-eslint/template-parser': '18.4.0',
      '@angular/build': '^18.2.11',
      '@angular/cdk': '^18.2.11',
      '@angular/cli': '^18.2.11',
      '@angular/compiler-cli': '^18.2.10',
      '@angular/language-service': '^18.2.10',
      '@hirez_io/observer-spy': '^2.2.0',
      '@ngx-playwright/test': '0.5.9',
      '@nx/vite': '~20.0.9',
      '@stryker-mutator/vitest-runner': '^8.6.0',
      '@types/node': '^18.19.3',
      '@types/uuid': '~8.3.4',
      '@typescript-eslint/eslint-plugin': '^7.2.0',
      '@typescript-eslint/parser': '^7.2.0',
      eslint: '^8.57.0',
      'eslint-plugin-prettier': '^4.0.0',
      'happy-dom': '^15.11.0',
      prettier: '^2.6.2',
      'ts-node': '^10.7.0',
      typescript: '~5.5.4',
      vite: '^5.4.10',
      'vite-tsconfig-paths': '^4.3.2',
      vitest: '^2.1.4'
    }
  },
  fs: { numberOfFiles: 422 },
  debug: [
    '2024-11-07T08:40:51.404Z project waiting for initial run signal\n',
    '2024-11-07T08:40:51.408Z model Initialization Completed: 158ms\n',
    '2024-11-07T08:40:51.468Z config Attempting automatic configuration for vitest\n',
    '2024-11-07T08:40:51.469Z vitest/config Detected Vitest (2.1.4).\n',
    '2024-11-07T08:40:51.478Z ui.service Starting UI service on port: 55001\n',
    '2024-11-07T08:40:51.479Z ui.service UI service started on port: 55001\n',
    '2024-11-07T08:40:51.651Z websocket received message ui.trackProjectConfig\n',
    '2024-11-07T08:40:51.651Z websocket received method call: trackProjectConfig\n',
    '2024-11-07T08:40:51.652Z websocket received message ui.trackContextLogsAndErrors\n',
    '2024-11-07T08:40:51.652Z websocket received method call: trackContextLogsAndErrors\n',
    '2024-11-07T08:40:51.653Z websocket received message ui.handshake\n',
    '2024-11-07T08:40:51.653Z websocket received method call: handshake\n',
    '2024-11-07T08:40:51.653Z websocket received message ui.trackEditorCursor\n',
    '2024-11-07T08:40:51.653Z websocket received method call: trackEditorCursor\n',
    '2024-11-07T08:40:51.653Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:40:51.653Z websocket received method call: trackStatus\n',
    '2024-11-07T08:40:53.243Z config Finished attempting automatic configuration for vitest (1775ms)\n',
    '2024-11-07T08:40:53.244Z project Wallaby Node version: v20.11.1\n',
    '2024-11-07T08:40:53.244Z project Wallaby config: <homeDir>/projects/projects/todomvc-angular/wallaby.js\n',
    '2024-11-07T08:40:53.275Z fs File system starting\n',
    '2024-11-07T08:40:53.333Z fs File system scan completed\n',
    '2024-11-07T08:40:53.336Z project File cache: <homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/projects/0478f65d73c6472d\n',
    '2024-11-07T08:40:53.337Z project package.json file change detected, invalidating local cache\n',
    '2024-11-07T08:40:53.348Z workers Parallelism for initial run: 1, for regular run: 1\n',
    '2024-11-07T08:40:53.348Z workers Starting run worker instance #0\n',
    '2024-11-07T08:40:53.349Z workers Web server is listening at 57985\n',
    '2024-11-07T08:40:53.349Z project File cache requires some updates, waiting required files from IDE\n',
    '2024-11-07T08:40:53.381Z project Stopping process pool\n',
    '2024-11-07T08:40:53.383Z project Test run started; run priority: 3\n',
    '2024-11-07T08:40:53.384Z project Running all tests\n',
    '2024-11-07T08:40:53.396Z workers Starting test run, priority: 3\n',
    '2024-11-07T08:40:53.396Z nodeRunner Starting sandbox [worker #0, session #1l93u]\n',
    '2024-11-07T08:40:53.396Z nodeRunner Preparing sandbox [worker #0, session #1l93u]\n',
    '2024-11-07T08:40:53.467Z workers Started run worker instance (delayed) #0\n',
    '2024-11-07T08:40:53.467Z nodeRunner Prepared sandbox [worker #0, session #1l93u]\n',
    '2024-11-07T08:40:53.467Z workers [worker #0, session #1l93u] Running tests in sandbox\n',
    '2024-11-07T08:40:53.716Z fs No metadata for added file found: vite.config.mts.timestamp-1730968853705-5d48d02bb4b7.mjs\n',
    '2024-11-07T08:40:53.914Z websocket received message ui.trackOverviewTestList\n',
    '2024-11-07T08:40:53.914Z websocket received method call: trackOverviewTestList\n',
    '2024-11-07T08:40:53.915Z websocket received message ui.trackAllLogsAndErrors\n',
    '2024-11-07T08:40:53.915Z websocket received method call: trackAllLogsAndErrors\n',
    '2024-11-07T08:40:53.915Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:40:53.915Z websocket received method call: trackStatus\n',
    '2024-11-07T08:40:53.915Z websocket received message ui.trackTestRun\n',
    '2024-11-07T08:40:53.915Z websocket received method call: trackTestRun\n',
    '2024-11-07T08:40:53.916Z websocket received message ui.trackStartupEvents\n',
    '2024-11-07T08:40:53.916Z websocket received method call: trackStartupEvents\n',
    '2024-11-07T08:40:53.916Z websocket received message ui.trackStats\n',
    '2024-11-07T08:40:53.916Z websocket received method call: trackStats\n',
    '2024-11-07T08:40:53.916Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:40:53.916Z websocket received method call: trackStatus\n',
    '2024-11-07T08:40:53.916Z websocket received message ui.trackTestRun\n',
    '2024-11-07T08:40:53.916Z websocket received method call: trackTestRun\n',
    '2024-11-07T08:40:53.916Z websocket received message ui.handshake\n',
    '2024-11-07T08:40:53.916Z websocket received method call: handshake\n',
    '2024-11-07T08:40:53.917Z websocket received message ui.trackEditorCursor\n',
    '2024-11-07T08:40:53.917Z websocket received method call: trackEditorCursor\n',
    '2024-11-07T08:40:53.917Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:40:53.917Z websocket received method call: trackStatus\n',
    '2024-11-07T08:40:54.440Z fs No metadata for deleted file found: vite.config.mts.timestamp-1730968853705-5d48d02bb4b7.mjs\n',
    "2024-11-07T08:40:55.175Z workers 'Scheduling Vitest Run (1l93u): 2024-11-07T08:40:55.173Z'\n",
    '2024-11-07T08:40:56.102Z workers Sandbox (active) [1l93u] error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at async file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.103Z workers Sandbox (active) [1l93u] error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at async file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.103Z workers Sandbox (active) [1l93u] error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at async file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.103Z workers Sandbox (active) [1l93u] error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at async file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.103Z workers Sandbox (active) [1l93u] error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at async file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.104Z workers Sandbox (active) [1l93u] error: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<rootDir>/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<rootDir>/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<rootDir>/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<rootDir>/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.104Z workers Sandbox (active) [1l93u] error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at async file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.104Z workers Sandbox (active) [1l93u] error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at async file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.104Z workers Sandbox (active) [1l93u] error: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<rootDir>/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<rootDir>/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<rootDir>/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<rootDir>/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.104Z workers Sandbox (active) [1l93u] error: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<rootDir>/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<rootDir>/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<rootDir>/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<rootDir>/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.104Z workers Sandbox (active) [1l93u] error: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<rootDir>/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<rootDir>/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<rootDir>/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<rootDir>/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.104Z workers Sandbox (active) [1l93u] error: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<rootDir>/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<rootDir>/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<rootDir>/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<rootDir>/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.105Z workers Sandbox (active) [1l93u] error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at async file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.105Z workers Sandbox (active) [1l93u] error: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<rootDir>/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<rootDir>/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<rootDir>/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<rootDir>/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.105Z workers Sandbox (active) [1l93u] error: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<rootDir>/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<rootDir>/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<rootDir>/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<rootDir>/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.105Z workers Sandbox (active) [1l93u] error: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<rootDir>/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<rootDir>/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<rootDir>/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<rootDir>/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.105Z workers Sandbox (active) [1l93u] error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at async file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.106Z workers Sandbox (active) [1l93u] error: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<rootDir>/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<rootDir>/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<rootDir>/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<rootDir>/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.157Z workers Sandbox (active) [1l93u] error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at async file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.158Z workers Sandbox (active) [1l93u] error: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<rootDir>/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<rootDir>/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<rootDir>/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<rootDir>/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<rootDir>/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at file://<rootDir>/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.159Z workers 'Vitest Run Complete (1l93u): 2024-11-07T08:40:56.159Z'\n",
    '2024-11-07T08:40:56.160Z workers [1l93u] Run 0 test(s), skipped 0 test(s)\n',
    '2024-11-07T08:40:56.160Z workers [1l93u] Sandbox is responsive, closing it\n',
    '2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match., stack: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at complete (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/shared.mjs:1:5211)\n' +
      '    at run (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/worker.mjs:1:341)\n' +
      '    at async file://<homeDir>/projects/projects/todomvc-angular/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match., stack: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at complete (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/shared.mjs:1:5211)\n' +
      '    at run (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/worker.mjs:1:341)\n' +
      '    at async file://<homeDir>/projects/projects/todomvc-angular/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match., stack: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at complete (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/shared.mjs:1:5211)\n' +
      '    at run (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/worker.mjs:1:341)\n' +
      '    at async file://<homeDir>/projects/projects/todomvc-angular/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match., stack: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at complete (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/shared.mjs:1:5211)\n' +
      '    at run (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/worker.mjs:1:341)\n' +
      '    at async file://<homeDir>/projects/projects/todomvc-angular/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match., stack: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at complete (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/shared.mjs:1:5211)\n' +
      '    at run (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/worker.mjs:1:341)\n' +
      '    at async file://<homeDir>/projects/projects/todomvc-angular/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: TypeError: Cannot read properties of undefined (reading 'inspect'), stack: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at run (file:\n',
    '2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match., stack: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at complete (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/shared.mjs:1:5211)\n' +
      '    at run (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/worker.mjs:1:341)\n' +
      '    at async file://<homeDir>/projects/projects/todomvc-angular/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    '2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match., stack: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at complete (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/shared.mjs:1:5211)\n' +
      '    at run (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/worker.mjs:1:341)\n' +
      '    at async file://<homeDir>/projects/projects/todomvc-angular/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: TypeError: Cannot read properties of undefined (reading 'inspect'), stack: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at run (file:\n',
    "2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: TypeError: Cannot read properties of undefined (reading 'inspect'), stack: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at run (file:\n',
    "2024-11-07T08:40:56.161Z workers Failed to map the stack to user code, entry message: TypeError: Cannot read properties of undefined (reading 'inspect'), stack: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at run (file:\n',
    "2024-11-07T08:40:56.162Z workers Failed to map the stack to user code, entry message: TypeError: Cannot read properties of undefined (reading 'inspect'), stack: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at run (file:\n',
    '2024-11-07T08:40:56.162Z workers Failed to map the stack to user code, entry message: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match., stack: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at complete (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/shared.mjs:1:5211)\n' +
      '    at run (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/worker.mjs:1:341)\n' +
      '    at async file://<homeDir>/projects/projects/todomvc-angular/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.162Z workers Failed to map the stack to user code, entry message: TypeError: Cannot read properties of undefined (reading 'inspect'), stack: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at run (file:\n',
    "2024-11-07T08:40:56.162Z workers Failed to map the stack to user code, entry message: TypeError: Cannot read properties of undefined (reading 'inspect'), stack: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at run (file:\n',
    "2024-11-07T08:40:56.162Z workers Failed to map the stack to user code, entry message: TypeError: Cannot read properties of undefined (reading 'inspect'), stack: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at run (file:\n',
    '2024-11-07T08:40:56.162Z workers Failed to map the stack to user code, entry message: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match., stack: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at complete (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/shared.mjs:1:5211)\n' +
      '    at run (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/worker.mjs:1:341)\n' +
      '    at async file://<homeDir>/projects/projects/todomvc-angular/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.162Z workers Failed to map the stack to user code, entry message: TypeError: Cannot read properties of undefined (reading 'inspect'), stack: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at run (file:\n',
    '2024-11-07T08:40:56.162Z workers Failed to map the stack to user code, entry message: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match., stack: Error: Wallaby did not detect that any vitest tasks were executed. This may indicate a problem with vitest dependency conflicts. Please ensure your vitest dependency versions match.\n' +
      '    at complete (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/shared.mjs:1:5211)\n' +
      '    at run (file://<homeDir>/.vscode/extensions/wallabyjs.wallaby-vscode-1.0.393/wallaby5cc2be/runners/node/vitest@0.14.0/worker.mjs:1:341)\n' +
      '    at async file://<homeDir>/projects/projects/todomvc-angular/node_modules/tinypool/dist/entry/worker.js:71:20\n',
    "2024-11-07T08:40:56.162Z workers Failed to map the stack to user code, entry message: TypeError: Cannot read properties of undefined (reading 'inspect'), stack: TypeError: Cannot read properties of undefined (reading 'inspect')\n" +
      '    at processError (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/utils/dist/error.js:107:44)\n' +
      '    at collectTestsPatched (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:871:21)\n' +
      '    at collectTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:832:61)\n' +
      '    at startTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/@vitest/runner/dist/index.js:1267:17)\n' +
      '    at run (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/workers/runVmTests.js:79:7)\n' +
      '    at runVmTests (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/chunks/vm.jpyrB0xy.js:831:5)\n' +
      '    at execute (file://<homeDir>/projects/projects/todomvc-angular/node_modules/vitest/dist/worker.js:123:5)\n' +
      '    at run (file:\n',
    '2024-11-07T08:40:56.162Z project Test run finished\n',
    '2024-11-07T08:40:56.163Z project Processed console.log entries\n',
    '2024-11-07T08:40:56.163Z project Processed loading sequences\n',
    '2024-11-07T08:40:56.163Z project Processed executed tests\n',
    '2024-11-07T08:40:56.163Z project Processed code coverage\n',
    '2024-11-07T08:40:56.168Z project Test run result processed and sent to IDE\n',
    '2024-11-07T08:40:56.168Z websocket received message ui.untrackStatus\n',
    '2024-11-07T08:40:56.168Z websocket received method call: untrackStatus\n',
    '2024-11-07T08:40:56.168Z websocket received message ui.untrackStats\n',
    '2024-11-07T08:40:56.168Z websocket received method call: untrackStats\n',
    '2024-11-07T08:40:56.168Z websocket received message ui.untrackStartupEvents\n',
    '2024-11-07T08:40:56.168Z websocket received method call: untrackStartupEvents\n',
    '2024-11-07T08:40:56.168Z websocket received message ui.untrackStatus\n',
    '2024-11-07T08:40:56.168Z websocket received method call: untrackStatus\n',
    '2024-11-07T08:40:56.168Z websocket received message ui.untrackTestRun\n',
    '2024-11-07T08:40:56.168Z websocket received method call: untrackTestRun\n',
    '2024-11-07T08:40:56.174Z websocket received message ui.trackStats\n',
    '2024-11-07T08:40:56.174Z websocket received method call: trackStats\n',
    '2024-11-07T08:40:56.175Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:40:56.175Z websocket received method call: trackStatus\n',
    '2024-11-07T08:40:56.175Z websocket received message ui.trackTestRun\n',
    '2024-11-07T08:40:56.175Z websocket received method call: trackTestRun\n',
    '2024-11-07T08:40:56.270Z fs No metadata for added file found: node_modules/.vite/vitest/results.json\n',
    '2024-11-07T08:40:57.582Z fs No metadata for added file found: .git/FETCH_HEAD\n',
    '2024-11-07T08:41:01.438Z fs File changed: .git/FETCH_HEAD\n',
    '2024-11-07T08:41:01.438Z fs No metadata for changed file found: .git/FETCH_HEAD\n',
    '2024-11-07T08:41:01.783Z websocket received message ui.untrackAllLogsAndErrors\n',
    '2024-11-07T08:41:01.783Z websocket received method call: untrackAllLogsAndErrors\n',
    '2024-11-07T08:41:01.784Z websocket received message ui.trackTestTree\n',
    '2024-11-07T08:41:01.784Z websocket received method call: trackTestTree\n',
    '2024-11-07T08:41:01.790Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:01.790Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:01.791Z websocket received message ui.openInSideView\n',
    '2024-11-07T08:41:01.791Z websocket received method call: openInSideView\n',
    '2024-11-07T08:41:02.403Z websocket received message ui.untrackTestTree\n',
    '2024-11-07T08:41:02.403Z websocket received method call: untrackTestTree\n',
    '2024-11-07T08:41:02.403Z websocket received message ui.untrackTestCoverage\n',
    '2024-11-07T08:41:02.403Z websocket received method call: untrackTestCoverage\n',
    '2024-11-07T08:41:02.403Z websocket received message ui.trackFilesWithCoverage\n',
    '2024-11-07T08:41:02.403Z websocket received method call: trackFilesWithCoverage\n',
    '2024-11-07T08:41:02.405Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:02.405Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:02.406Z websocket received message ui.openInSideView\n',
    '2024-11-07T08:41:02.406Z websocket received method call: openInSideView\n',
    '2024-11-07T08:41:02.412Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:02.413Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:02.413Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:02.413Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:02.967Z websocket received message ui.untrackFilesWithCoverage\n',
    '2024-11-07T08:41:02.967Z websocket received method call: untrackFilesWithCoverage\n',
    '2024-11-07T08:41:02.969Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:41:02.969Z websocket received method call: trackStatus\n',
    '2024-11-07T08:41:02.969Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:41:02.969Z websocket received method call: trackStatus\n',
    '2024-11-07T08:41:02.969Z websocket received message ui.trackTestRun\n',
    '2024-11-07T08:41:02.969Z websocket received method call: trackTestRun\n',
    '2024-11-07T08:41:02.974Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:02.974Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:02.975Z websocket received message ui.openInSideView\n',
    '2024-11-07T08:41:02.975Z websocket received method call: openInSideView\n',
    '2024-11-07T08:41:03.074Z websocket received message ui.trackDiagnosticMessages\n',
    '2024-11-07T08:41:03.074Z websocket received method call: trackDiagnosticMessages\n',
    '2024-11-07T08:41:03.896Z websocket received message ui.untrackDiagnosticMessages\n',
    '2024-11-07T08:41:03.896Z websocket received method call: untrackDiagnosticMessages\n',
    '2024-11-07T08:41:03.896Z websocket received message ui.untrackTestRun\n',
    '2024-11-07T08:41:03.896Z websocket received method call: untrackTestRun\n',
    '2024-11-07T08:41:03.897Z websocket received message ui.untrackStatus\n',
    '2024-11-07T08:41:03.897Z websocket received method call: untrackStatus\n',
    '2024-11-07T08:41:03.897Z websocket received message ui.trackFilesWithCoverage\n',
    '2024-11-07T08:41:03.897Z websocket received method call: trackFilesWithCoverage\n',
    '2024-11-07T08:41:03.898Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:03.898Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:03.898Z websocket received message ui.openInSideView\n',
    '2024-11-07T08:41:03.898Z websocket received method call: openInSideView\n',
    '2024-11-07T08:41:04.347Z websocket received message ui.untrackFilesWithCoverage\n',
    '2024-11-07T08:41:04.347Z websocket received method call: untrackFilesWithCoverage\n',
    '2024-11-07T08:41:04.347Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:41:04.347Z websocket received method call: trackStatus\n',
    '2024-11-07T08:41:04.348Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:41:04.348Z websocket received method call: trackStatus\n',
    '2024-11-07T08:41:04.348Z websocket received message ui.trackTestRun\n',
    '2024-11-07T08:41:04.348Z websocket received method call: trackTestRun\n',
    '2024-11-07T08:41:04.350Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:04.350Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:04.350Z websocket received message ui.openInSideView\n',
    '2024-11-07T08:41:04.350Z websocket received method call: openInSideView\n',
    '2024-11-07T08:41:04.362Z websocket received message ui.trackDiagnosticMessages\n',
    '2024-11-07T08:41:04.362Z websocket received method call: trackDiagnosticMessages\n',
    '2024-11-07T08:41:04.933Z websocket received message ui.untrackDiagnosticMessages\n',
    '2024-11-07T08:41:04.933Z websocket received method call: untrackDiagnosticMessages\n',
    '2024-11-07T08:41:04.934Z websocket received message ui.untrackTestRun\n',
    '2024-11-07T08:41:04.934Z websocket received method call: untrackTestRun\n',
    '2024-11-07T08:41:04.934Z websocket received message ui.untrackStatus\n',
    '2024-11-07T08:41:04.934Z websocket received method call: untrackStatus\n',
    '2024-11-07T08:41:04.935Z websocket received message ui.trackFilesWithCoverage\n',
    '2024-11-07T08:41:04.935Z websocket received method call: trackFilesWithCoverage\n',
    '2024-11-07T08:41:04.936Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:04.936Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:04.936Z websocket received message ui.openInSideView\n',
    '2024-11-07T08:41:04.936Z websocket received method call: openInSideView\n',
    '2024-11-07T08:41:06.090Z websocket received message ui.untrackFilesWithCoverage\n',
    '2024-11-07T08:41:06.090Z websocket received method call: untrackFilesWithCoverage\n',
    '2024-11-07T08:41:06.092Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:41:06.092Z websocket received method call: trackStatus\n',
    '2024-11-07T08:41:06.092Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:41:06.092Z websocket received method call: trackStatus\n',
    '2024-11-07T08:41:06.093Z websocket received message ui.trackTestRun\n',
    '2024-11-07T08:41:06.093Z websocket received method call: trackTestRun\n',
    '2024-11-07T08:41:06.097Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:06.097Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:06.098Z websocket received message ui.openInSideView\n',
    '2024-11-07T08:41:06.098Z websocket received method call: openInSideView\n',
    '2024-11-07T08:41:06.114Z websocket received message ui.trackDiagnosticMessages\n',
    '2024-11-07T08:41:06.114Z websocket received method call: trackDiagnosticMessages\n',
    '2024-11-07T08:41:09.792Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.792Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.793Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.793Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.804Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.804Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.804Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.804Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.812Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.812Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.812Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.812Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.820Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.820Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.821Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.821Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.828Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.828Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.829Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.829Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.837Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.837Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.837Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.837Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.845Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.845Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.845Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.845Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.853Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.853Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.854Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.854Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.862Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.862Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.862Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.862Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.870Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.870Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.870Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.871Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.878Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.878Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.879Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.879Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.887Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.887Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.887Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.887Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.895Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.895Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.895Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.895Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.903Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.903Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.904Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.904Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.912Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.912Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.912Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.912Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.920Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.920Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.920Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.920Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.928Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.928Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.928Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.928Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.937Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.937Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.937Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.937Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.945Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.945Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.945Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.945Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.954Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.954Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.954Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.954Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.962Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.962Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.962Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.962Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.970Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.970Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.970Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.970Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.978Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.978Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.979Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.979Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.987Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.987Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.987Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.987Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.995Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.995Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:09.995Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:09.995Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.003Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.003Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.004Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.004Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.012Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.012Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.012Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.012Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.020Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.020Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.020Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.021Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.202Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.202Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.203Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.203Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.212Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.212Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.213Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.213Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.229Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.229Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.230Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.230Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.236Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.236Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.236Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.236Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.245Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.245Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.246Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.246Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.253Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.253Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.254Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.254Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.262Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.262Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.262Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.262Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.270Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.270Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.271Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.271Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.278Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.278Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.279Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.279Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.287Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.287Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.287Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.287Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.295Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.295Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.295Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.295Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.337Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.337Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:10.337Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:10.337Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:31.592Z websocket received message ui.untrackDiagnosticMessages\n',
    '2024-11-07T08:41:31.592Z websocket received method call: untrackDiagnosticMessages\n',
    '2024-11-07T08:41:31.595Z websocket received message ui.untrackTestRun\n',
    '2024-11-07T08:41:31.595Z websocket received method call: untrackTestRun\n',
    '2024-11-07T08:41:31.595Z websocket received message ui.untrackStatus\n',
    '2024-11-07T08:41:31.596Z websocket received method call: untrackStatus\n',
    '2024-11-07T08:41:31.597Z websocket received message ui.trackContextLogsAndErrors\n',
    '2024-11-07T08:41:31.597Z websocket received method call: trackContextLogsAndErrors\n',
    '2024-11-07T08:41:31.601Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:31.601Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:31.601Z websocket received message ui.openInSideView\n',
    '2024-11-07T08:41:31.601Z websocket received method call: openInSideView\n',
    '2024-11-07T08:41:33.466Z websocket received message ui.untrackAllLogsAndErrors\n',
    '2024-11-07T08:41:33.466Z websocket received method call: untrackAllLogsAndErrors\n',
    '2024-11-07T08:41:33.471Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:41:33.471Z websocket received method call: trackStatus\n',
    '2024-11-07T08:41:33.471Z websocket received message ui.trackStatus\n',
    '2024-11-07T08:41:33.471Z websocket received method call: trackStatus\n',
    '2024-11-07T08:41:33.471Z websocket received message ui.trackTestRun\n',
    '2024-11-07T08:41:33.471Z websocket received method call: trackTestRun\n',
    '2024-11-07T08:41:33.476Z websocket received message ui.updateAppSettings\n',
    '2024-11-07T08:41:33.476Z websocket received method call: updateAppSettings\n',
    '2024-11-07T08:41:33.477Z websocket received message ui.openInSideView\n',
    '2024-11-07T08:41:33.477Z websocket received method call: openInSideView\n',
    '2024-11-07T08:41:33.503Z websocket received message ui.trackDiagnosticMessages\n',
    '2024-11-07T08:41:33.503Z websocket received method call: trackDiagnosticMessages\n'
  ]
}
smcenlly commented 5 days ago

Thanks for reporting your problem, and for the diagnostics report.

In a recent version of vitest, there had been a breaking change with our integration with pool: 'vmThreads'. This is fixed in the latest version of Wallaby core, v1.0.1632. Please run Wallaby.js: Force Core Update, it will download the latest version.