lucono/karma-test-explorer

Tests won't load in 0.7.2

Closed this issue · 4 comments

I get the error "Failed to load tests - Karma server quit unexpectedly" in the Karma Test Explorer log, and no tests are loaded, using version 0.7.2

If I downgrade to 0.7.1, the tests load and run correctly.

Please provide the following to help understand the issue:

  • The debug logs
  • Environment details

You can use the bug template here.

Describe the Bug

I get the error "Failed to load tests - Karma server quit unexpectedly" in the Karma Test Explorer log, and no tests are loaded, using version 0.7.2

If I downgrade to 0.7.1, the tests load and run correctly.

Steps to Reproduce the Behavior

  1. Start VS Code
  2. Click on Testing icon
  3. No tests appear; a red triangle Error icon appears instead

Describe the Expected Behavior

Tests are parsed and loaded normally

Provide Debug Logs

Karma Test Explorer log:

[2022-07-29 23:29:30.467] [DEBUG] [Adapter]: Creating server output channel
[2022-07-29 23:29:30.467] [DEBUG] [Adapter]: Creating port acquisition client
[2022-07-29 23:29:30.471] [DEBUG] [Adapter]: Creating debugger
[2022-07-29 23:29:30.471] [DEBUG] [Adapter]: Creating project commands handler
[2022-07-29 23:29:30.471] [DEBUG] [Commands]: Registering command 'ShowLog' as namespaced command 'karmaTestExplorer.PROJECT:ShowLog
[2022-07-29 23:29:30.471] [DEBUG] [Commands]: Registering command 'Reset' as namespaced command 'karmaTestExplorer.PROJECT:Reset
[2022-07-29 23:29:30.472] [DEBUG] [Adapter]: Creating notifications handler
[2022-07-29 23:29:30.472] [DEBUG] [Adapter]: Creating test emitters
[2022-07-29 23:29:30.472] [DEBUG] [Adapter]: Creating new test explorer
[2022-07-29 23:29:30.472] [DEBUG] [Adapter]: Re/creating test explorer with extension configuration: {
  "logger": {
    "loggerName": "ExtensionConfig",
    "appender": {
      "outputChannelName": "Karma Test Explorer (PROJECT)",
      "options": {
        "enabled": true,
        "lazyCreate": false
      },
      "outputChannel": {
        "name": "Karma Test Explorer (PROJECT)"
      }
    },
    "logLevel": "debug"
  },
  "projectType": "karma",
  "projectName": "PROJECT",
  "projectPath": "C:/PROJECT",
  "projectInstallRootPath": "C:/PROJECT",
  "projectKarmaConfigFilePath": "C:/PROJECT/karma.conf.js",
  "baseKarmaConfFilePath": "C:/Users/Gregs/.vscode/extensions/lucono.karma-test-explorer-0.7.2/dist/karma.conf",
  "karmaPort": 9976,
  "testTriggerMethod": "http",
  "testParsingMethod": "ast",
  "failOnStandardError": false,
  "defaultSocketConnectionPort": 9999,
  "logLevel": "debug",
  "karmaLogLevel": "debug",
  "karmaReporterLogLevel": "debug",
  "autoWatchEnabled": true,
  "autoWatchBatchDelay": 5000,
  "karmaReadyTimeout": 900000,
  "testGrouping": "suite",
  "flattenSingleChildFolders": true,
  "environment": {},
  "testFramework": null,
  "reloadOnKarmaConfigChange": true,
  "customLauncher": {
    "base": "Chrome",
    "flags": [
      "--headless",
      "--disable-gpu",
      "--disable-dev-shm-usage",
      "--remote-debugging-port=9222"
    ]
  },
  "testFiles": [
    "**/*{.,-,_}{test,spec}.{ts,js}",
    "**/{test,spec}{.,-,_}*.{ts,js}"
  ],
  "allowGlobalPackageFallback": true,
  "excludeDisabledTests": false,
  "showOnlyFocusedTests": false,
  "showUnmappedTests": true,
  "showTestDefinitionTypeIndicators": true,
  "debuggerConfig": {
    "name": "Karma Test Explorer Debugging",
    "type": "pwa-chrome",
    "request": "attach",
    "browserAttachLocation": "workspace",
    "address": "localhost",
    "port": 9222,
    "timeout": 60000
  },
  "reloadOnChangedFiles": [],
  "defaultDebugPort": 9222,
  "excludeFiles": [
    "**/node_modules/**/*"
  ]
}
[2022-07-29 23:29:30.472] [DEBUG] [Adapter]: Creating main factory
[2022-07-29 23:29:30.472] [DEBUG] [MainFactory]: Detecting test framework from karma config file: C:/PROJECT/karma.conf.js
[2022-07-29 23:29:30.472] [DEBUG] [FileHandler]: Reading file synchronously: C:/PROJECT/karma.conf.js
[2022-07-29 23:29:30.473] [DEBUG] [MainFactory]: Detected frameworks from karma config: jasmine, @angular-devkit/build-angular
[2022-07-29 23:29:30.473] [DEBUG] [MainFactory]: Detected test framework: jasmine
[2022-07-29 23:29:30.473] [INFO] [MainFactory]: Using test framework: jasmine (auto-detected)
[2022-07-29 23:29:30.473] [DEBUG] [MainFactory]: Creating test helper
[2022-07-29 23:29:30.473] [DEBUG] [MainFactory]: Creating process handler
[2022-07-29 23:29:30.474] [DEBUG] [MainFactory]: Creating test locator
[2022-07-29 23:29:30.474] [DEBUG] [MainFactory]: Creating AST test definition provider
[2022-07-29 23:29:30.474] [DEBUG] [MainFactory]: Creating test store
[2022-07-29 23:29:30.474] [DEBUG] [Adapter]: Getting process handler from factory
[2022-07-29 23:29:30.474] [DEBUG] [Adapter]: Getting test locator from factory
[2022-07-29 23:29:30.474] [DEBUG] [Adapter]: Getting test store from factory
[2022-07-29 23:29:30.474] [DEBUG] [Adapter]: Getting test manager from factory
[2022-07-29 23:29:30.475] [DEBUG] [KarmaFactory]: Creating Karma test server executor
[2022-07-29 23:29:30.476] [DEBUG] [KarmaFactory]: Creating Karma http test run executor
[2022-07-29 23:29:30.476] [DEBUG] [Adapter]: Getting file watcher from factory
[2022-07-29 23:29:30.476] [DEBUG] [FileWatcher]: Creating file watchers for monitored files
[2022-07-29 23:29:30.476] [DEBUG] [FileWatcher]: Registering file handler for files: [
  "karma.conf.js"
]
[2022-07-29 23:29:30.476] [DEBUG] [FileWatcher]: Creating file watcher for file or pattern 'karma.conf.js' using base path: c:\subversion\VM\Contatto\PROJECT
[2022-07-29 23:29:30.476] [DEBUG] [FileWatcher]: Creating file watchers for test file changes
[2022-07-29 23:29:30.476] [DEBUG] [FileWatcher]: Registering file handler for files: [
  "**/*{.,-,_}{test,spec}.{ts,js}",
  "**/{test,spec}{.,-,_}*.{ts,js}"
]
[2022-07-29 23:29:30.476] [DEBUG] [FileWatcher]: Creating file watcher for file or pattern '**/*{.,-,_}{test,spec}.{ts,js}' using base path: c:\PROJECT
[2022-07-29 23:29:30.477] [DEBUG] [FileWatcher]: Creating file watcher for file or pattern '**/{test,spec}{.,-,_}*.{ts,js}' using base path: c:\PROJECT
[2022-07-29 23:29:30.477] [DEBUG] [Adapter]: Creating test explorer
[2022-07-29 23:29:30.478] [DEBUG] [KarmaTestExplorer]: Test load started
[2022-07-29 23:29:30.478] [DEBUG] [KarmaTestExplorer]: Test hard refresh started
[2022-07-29 23:29:30.479] [DEBUG] [TestLocator]: Refresh requested for all spec file(s): ["**/*{.,-,_}{test,spec}.{ts,js}","**/{test,spec}{.,-,_}*.{ts,js}"]
[2022-07-29 23:29:30.479] [DEBUG] [TestLocator]: No refresh currently in progress - will commence new refresh for files: ["**/*{.,-,_}{test,spec}.{ts,js}","**/{test,spec}{.,-,_}*.{ts,js}"]
[2022-07-29 23:29:30.479] [DEBUG] [TestLocator]: Refreshing all spec file(s): ["**/*{.,-,_}{test,spec}.{ts,js}","**/{test,spec}{.,-,_}*.{ts,js}"]
[2022-07-29 23:29:30.484] [DEBUG] [KarmaTestExplorer]: Refresh request - Test manager is not started - Starting it
[2022-07-29 23:29:30.660] [DEBUG] [PortAcquisitionClient]: Request for 1 port(s) at base port 9976 acquired: 9976
[2022-07-29 23:29:30.660] [INFO] [DefaultTestManager]: Using requested --> available karma port: 9976 --> 9976
[2022-07-29 23:29:30.860] [DEBUG] [PortAcquisitionClient]: Request for 1 port(s) at base port 9999 acquired: 9999
[2022-07-29 23:29:30.860] [INFO] [DefaultTestManager]: Using requested --> available karma listener socket port: 9999 --> 9999
[2022-07-29 23:29:30.985] [DEBUG] [PortAcquisitionClient]: Request for 1 port(s) at base port 9222 acquired: 9222
[2022-07-29 23:29:30.985] [INFO] [DefaultTestManager]: Using requested --> available debug port: 9222 --> 9222
[2022-07-29 23:29:30.985] [DEBUG] [KarmaTestListener]: Attempting to listen on port 9999
[2022-07-29 23:29:31.007] [INFO] [KarmaTestServer]: Starting karma server
[2022-07-29 23:29:31.008] [DEBUG] [KarmaCommandLineTestServerExecutor]: Executing server start with karma port '9976' and karma socket port '9999'
[2022-07-29 23:29:31.109] [DEBUG] [KarmaCommandLineTestServerExecutor]: Found 'karma' module at: C:\PROJECT\node_modules\karma
[2022-07-29 23:29:31.110] [DEBUG] [KarmaCommandLineTestServerExecutor::SimpleProcess]: Process svsngyreg1f: 
Executing command: 'C:\Program Files\nodejs\node.EXE' 
with args: ["C:\\PROJECT\\node_modules\\karma\\bin\\karma","start","C:/Users/Gregs/.vscode/extensions/lucono.karma-test-explorer-0.7.2/dist/karma.conf","--no-single-run"]
[2022-07-29 23:29:31.113] [DEBUG] [KarmaCommandLineTestServerExecutor::SimpleProcess]: Process svsngyreg1f - process spawned successfully with PID 20292 for command: C:\Program Files\nodejs\node.EXE C:\PROJECT\node_modules\karma\bin\karma start C:/Users/Gregs/.vscode/extensions/lucono.karma-test-explorer-0.7.2/dist/karma.conf --no-single-run
[2022-07-29 23:29:31.114] [INFO] [KarmaTestListener]: Waiting for Karma to connect on port 9999
[2022-07-29 23:29:32.714] [DEBUG] [FileHandler]: Resolved 111 file(s) from file patterns: ["**/*{.,-,_}{test,spec}.{ts,js}","**/{test,spec}{.,-,_}*.{ts,js}"]
[2022-07-29 23:29:32.719] [DEBUG] [TestLocator]: Requested --> filtered file count to refresh: 111 --> 111
[2022-07-29 23:29:32.721] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/e2e/src/app.e2e-spec.ts
[2022-07-29 23:29:32.728] [DEBUG] [AstTestFileParser]: Parse operation 3ve7ztm6bns: Parsed 1 total tests from file 'C:/PROJECT/e2e/src/app.e2e-spec.ts' in 0.01 secs
[2022-07-29 23:29:32.728] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/app.component.spec.ts
[2022-07-29 23:29:32.733] [DEBUG] [AstTestFileParser]: Parse operation hyctq9hmdhs: Parsed 1 total tests from file 'C:/PROJECT/src/app/app.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.733] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/environments/environment.test.ts
[2022-07-29 23:29:32.734] [DEBUG] [AstTestFileParser]: Parse operation 0bzs7mrycqj: Parsed 0 total tests from file 'C:/PROJECT/src/environments/environment.test.ts' in 0.00 secs
[2022-07-29 23:29:32.734] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/directives/delayed-hover.directive.spec.ts
[2022-07-29 23:29:32.736] [DEBUG] [AstTestFileParser]: Parse operation 4h8fcutk8nq: Parsed 1 total tests from file 'C:/PROJECT/src/app/directives/delayed-hover.directive.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.736] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/directives/integer-only.directive.spec.ts
[2022-07-29 23:29:32.737] [DEBUG] [AstTestFileParser]: Parse operation l5h3kuad4oc: Parsed 1 total tests from file 'C:/PROJECT/src/app/directives/integer-only.directive.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.737] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/directives/numeric-only.directive.spec.ts
[2022-07-29 23:29:32.739] [DEBUG] [AstTestFileParser]: Parse operation rcv023je6m: Parsed 1 total tests from file 'C:/PROJECT/src/app/directives/numeric-only.directive.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.739] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/directives/required-with-value.directive.spec.ts
[2022-07-29 23:29:32.743] [DEBUG] [AstTestFileParser]: Parse operation et7mnqcjhud: Parsed 6 total tests from file 'C:/PROJECT/src/app/directives/required-with-value.directive.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.743] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/guards/admin.guard.spec.ts
[2022-07-29 23:29:32.746] [DEBUG] [AstTestFileParser]: Parse operation v9joj9wrizm: Parsed 1 total tests from file 'C:/PROJECT/src/app/guards/admin.guard.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.747] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/guards/auth.guard.spec.ts
[2022-07-29 23:29:32.749] [DEBUG] [AstTestFileParser]: Parse operation 169tjgxutcy: Parsed 1 total tests from file 'C:/PROJECT/src/app/guards/auth.guard.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.749] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/guards/inactive-session-warning.guard.spec.ts
[2022-07-29 23:29:32.752] [DEBUG] [AstTestFileParser]: Parse operation 8q0ksciynov: Parsed 1 total tests from file 'C:/PROJECT/src/app/guards/inactive-session-warning.guard.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.752] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/guards/unsaved-changes.guard.spec.ts
[2022-07-29 23:29:32.755] [DEBUG] [AstTestFileParser]: Parse operation oe4a3by22f: Parsed 1 total tests from file 'C:/PROJECT/src/app/guards/unsaved-changes.guard.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.755] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/http-interceptors/add-group-filter-header-interceptor.spec.ts
[2022-07-29 23:29:32.757] [DEBUG] [AstTestFileParser]: Parse operation cmrfaochx1: Parsed 1 total tests from file 'C:/PROJECT/src/app/http-interceptors/add-group-filter-header-interceptor.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.757] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/http-interceptors/add-with-credentials-interceptor.spec.ts
[2022-07-29 23:29:32.758] [DEBUG] [AstTestFileParser]: Parse operation l4rrx2jlqub: Parsed 1 total tests from file 'C:/PROJECT/src/app/http-interceptors/add-with-credentials-interceptor.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.758] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/http-interceptors/add-xsrf-header-interceptor.spec.ts
[2022-07-29 23:29:32.759] [DEBUG] [AstTestFileParser]: Parse operation kytg7jtb5w: Parsed 1 total tests from file 'C:/PROJECT/src/app/http-interceptors/add-xsrf-header-interceptor.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.759] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/http-interceptors/http-error-interceptor.spec.ts
[2022-07-29 23:29:32.761] [DEBUG] [AstTestFileParser]: Parse operation 746nh5axnxv: Parsed 1 total tests from file 'C:/PROJECT/src/app/http-interceptors/http-error-interceptor.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.761] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/http-interceptors/reset-session-expiration-interceptor.spec.ts
[2022-07-29 23:29:32.762] [DEBUG] [AstTestFileParser]: Parse operation clckldep1pd: Parsed 1 total tests from file 'C:/PROJECT/src/app/http-interceptors/reset-session-expiration-interceptor.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.762] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/http-interceptors/unauthorized-interceptor.spec.ts
[2022-07-29 23:29:32.765] [DEBUG] [AstTestFileParser]: Parse operation 8i0byxzd0bt: Parsed 1 total tests from file 'C:/PROJECT/src/app/http-interceptors/unauthorized-interceptor.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.765] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/pipes/local-date.pipe.spec.ts
[2022-07-29 23:29:32.766] [DEBUG] [AstTestFileParser]: Parse operation 8fsjqe6g2yh: Parsed 1 total tests from file 'C:/PROJECT/src/app/pipes/local-date.pipe.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.766] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/admin.service.spec.ts
[2022-07-29 23:29:32.768] [DEBUG] [AstTestFileParser]: Parse operation g5t2xn6ghx4: Parsed 1 total tests from file 'C:/PROJECT/src/app/services/admin.service.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.768] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/app-settings.service.spec.ts
[2022-07-29 23:29:32.769] [DEBUG] [AstTestFileParser]: Parse operation 7ktkvxyf3nc: Parsed 1 total tests from file 'C:/PROJECT/src/app/services/app-settings.service.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.769] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/auth.service.spec.ts
[2022-07-29 23:29:32.771] [DEBUG] [AstTestFileParser]: Parse operation 0h3unqcn9hh: Parsed 1 total tests from file 'C:/PROJECT/src/app/services/auth.service.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.771] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/auto-refresh.service.spec.ts
[2022-07-29 23:29:32.773] [DEBUG] [AstTestFileParser]: Parse operation dfr9syaf4nc: Parsed 1 total tests from file 'C:/PROJECT/src/app/services/auto-refresh.service.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.773] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/contatto-api.service.spec.ts
[2022-07-29 23:29:32.775] [DEBUG] [AstTestFileParser]: Parse operation spiamdbobc: Parsed 1 total tests from file 'C:/PROJECT/src/app/services/contatto-api.service.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.775] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/encounter.service.spec.ts
[2022-07-29 23:29:32.820] [DEBUG] [AstTestFileParser]: Parse operation 18gopqlpdue: Parsed 38 total tests from file 'C:/PROJECT/src/app/services/encounter.service.spec.ts' in 0.04 secs
[2022-07-29 23:29:32.821] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/implant.service.spec.ts
[2022-07-29 23:29:32.835] [DEBUG] [AstTestFileParser]: Parse operation g93tly4sfef: Parsed 53 total tests from file 'C:/PROJECT/src/app/services/implant.service.spec.ts' in 0.01 secs
[2022-07-29 23:29:32.835] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/inactivity-timeout.service.spec.ts
[2022-07-29 23:29:32.836] [DEBUG] [AstTestFileParser]: Parse operation sdy8cqx7t1e: Parsed 1 total tests from file 'C:/PROJECT/src/app/services/inactivity-timeout.service.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.836] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/notification.service.spec.ts
[2022-07-29 23:29:32.839] [DEBUG] [AstTestFileParser]: Parse operation ox38wsxeaxm: Parsed 5 total tests from file 'C:/PROJECT/src/app/services/notification.service.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.839] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/patient.service.spec.ts
[2022-07-29 23:29:32.850] [DEBUG] [AstTestFileParser]: Parse operation q73nwsak2lo: Parsed 13 total tests from file 'C:/PROJECT/src/app/services/patient.service.spec.ts' in 0.01 secs
[2022-07-29 23:29:32.850] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/user-activity.service.spec.ts
[2022-07-29 23:29:32.851] [DEBUG] [AstTestFileParser]: Parse operation 6rwara3tfdd: Parsed 1 total tests from file 'C:/PROJECT/src/app/services/user-activity.service.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.851] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/services/zipnote.service.spec.ts
[2022-07-29 23:29:32.852] [DEBUG] [AstTestFileParser]: Parse operation vjmn9ifkwaf: Parsed 1 total tests from file 'C:/PROJECT/src/app/services/zipnote.service.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.852] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/access-denied/access-denied.component.spec.ts
[2022-07-29 23:29:32.853] [DEBUG] [AstTestFileParser]: Parse operation 3c19exh1fo2: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/access-denied/access-denied.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.853] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/action-list/action-list.component.spec.ts
[2022-07-29 23:29:32.880] [DEBUG] [AstTestFileParser]: Parse operation 8ovri8zl8wu: Parsed 14 total tests from file 'C:/PROJECT/src/app/components/action-list/action-list.component.spec.ts' in 0.03 secs
[2022-07-29 23:29:32.880] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/actions/actions.component.spec.ts
[2022-07-29 23:29:32.911] [DEBUG] [AstTestFileParser]: Parse operation hegq6ntxfi: Parsed 22 total tests from file 'C:/PROJECT/src/app/components/actions/actions.component.spec.ts' in 0.03 secs
[2022-07-29 23:29:32.911] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/adjust-alerts-tile/adjust-alerts-tile.component.spec.ts
[2022-07-29 23:29:32.918] [DEBUG] [AstTestFileParser]: Parse operation 30s2o67y1ie: Parsed 13 total tests from file 'C:/PROJECT/src/app/components/adjust-alerts-tile/adjust-alerts-tile.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:32.918] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/clinic-desktop/clinic-desktop.component.spec.ts
[2022-07-29 23:29:32.920] [DEBUG] [AstTestFileParser]: Parse operation 67500qsgblo: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/clinic-desktop/clinic-desktop.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.920] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/clinical-interpretation-amendment-editor/clinical-interpretation-amendment-editor.component.spec.ts
[2022-07-29 23:29:32.924] [DEBUG] [AstTestFileParser]: Parse operation ldcw4n7e1g9: Parsed 6 total tests from file 'C:/PROJECT/src/app/components/clinical-interpretation-amendment-editor/clinical-interpretation-amendment-editor.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.924] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/clinical-interpretation-timeline/clinical-interpretation-timeline.component.spec.ts
[2022-07-29 23:29:32.930] [DEBUG] [AstTestFileParser]: Parse operation irgv006ak5k: Parsed 5 total tests from file 'C:/PROJECT/src/app/components/clinical-interpretation-timeline/clinical-interpretation-timeline.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:32.930] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/confirm-inactive-session/confirm-inactive-session.component.spec.ts
[2022-07-29 23:29:32.932] [DEBUG] [AstTestFileParser]: Parse operation ul5a4wcvedm: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/confirm-inactive-session/confirm-inactive-session.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.932] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/confirm-login/confirm-login.component.spec.ts
[2022-07-29 23:29:32.933] [DEBUG] [AstTestFileParser]: Parse operation txmt43qscgr: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/confirm-login/confirm-login.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.934] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/confirm-unsaved-changes/confirm-unsaved-changes.component.spec.ts
[2022-07-29 23:29:32.935] [DEBUG] [AstTestFileParser]: Parse operation m8vr6qp982: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/confirm-unsaved-changes/confirm-unsaved-changes.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.935] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/device-list/device-list.component.spec.ts
[2022-07-29 23:29:32.950] [DEBUG] [AstTestFileParser]: Parse operation 8fhupt79r5n: Parsed 28 total tests from file 'C:/PROJECT/src/app/components/device-list/device-list.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:32.950] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-data/encounter-data.component.spec.ts
[2022-07-29 23:29:32.963] [DEBUG] [AstTestFileParser]: Parse operation cvxlcci9r37: Parsed 19 total tests from file 'C:/PROJECT/src/app/components/encounter-data/encounter-data.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:32.963] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-data-editor/encounter-data-editor.component.spec.ts
[2022-07-29 23:29:32.964] [DEBUG] [AstTestFileParser]: Parse operation tx713vzvvmh: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/encounter-data-editor/encounter-data-editor.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:32.964] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-data-navigation/encounter-data-navigation.component.spec.ts
[2022-07-29 23:29:32.974] [DEBUG] [AstTestFileParser]: Parse operation h4tl7vnf05h: Parsed 12 total tests from file 'C:/PROJECT/src/app/components/encounter-data-navigation/encounter-data-navigation.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:32.974] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-diagnostics-data/encounter-diagnostics-data.component.spec.ts
[2022-07-29 23:29:33.006] [DEBUG] [AstTestFileParser]: Parse operation jw3s6cn92u: Parsed 53 total tests from file 'C:/PROJECT/src/app/components/encounter-diagnostics-data/encounter-diagnostics-data.component.spec.ts' in 0.03 secs
[2022-07-29 23:29:33.006] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-emr-report/encounter-emr-report.component.spec.ts
[2022-07-29 23:29:33.011] [DEBUG] [AstTestFileParser]: Parse operation 7y85cepvore: Parsed 5 total tests from file 'C:/PROJECT/src/app/components/encounter-emr-report/encounter-emr-report.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.011] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-episodes-data/encounter-episodes-data.component.spec.ts
[2022-07-29 23:29:33.021] [DEBUG] [AstTestFileParser]: Parse operation ij1v39roqob: Parsed 14 total tests from file 'C:/PROJECT/src/app/components/encounter-episodes-data/encounter-episodes-data.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.021] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-history/encounter-history.component.spec.ts
[2022-07-29 23:29:33.027] [DEBUG] [AstTestFileParser]: Parse operation oxt7risj83a: Parsed 4 total tests from file 'C:/PROJECT/src/app/components/encounter-history/encounter-history.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.027] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-information/encounter-information.component.spec.ts
[2022-07-29 23:29:33.069] [DEBUG] [AstTestFileParser]: Parse operation 8qx9xz3uila: Parsed 94 total tests from file 'C:/PROJECT/src/app/components/encounter-information/encounter-information.component.spec.ts' in 0.04 secs
[2022-07-29 23:29:33.070] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-list/encounter-list.component.spec.ts
[2022-07-29 23:29:33.087] [DEBUG] [AstTestFileParser]: Parse operation f04932wp0a: Parsed 42 total tests from file 'C:/PROJECT/src/app/components/encounter-list/encounter-list.component.spec.ts' in 0.02 secs
[2022-07-29 23:29:33.087] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-parameters-data/encounter-parameters-data.component.spec.ts
[2022-07-29 23:29:33.104] [DEBUG] [AstTestFileParser]: Parse operation 9a8ks6xss0n: Parsed 32 total tests from file 'C:/PROJECT/src/app/components/encounter-parameters-data/encounter-parameters-data.component.spec.ts' in 0.02 secs
[2022-07-29 23:29:33.104] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-summary/encounter-summary.component.spec.ts
[2022-07-29 23:29:33.247] [DEBUG] [AstTestFileParser]: Parse operation 5k4pqyr8lyw: Parsed 242 total tests from file 'C:/PROJECT/src/app/components/encounter-summary/encounter-summary.component.spec.ts' in 0.14 secs
[2022-07-29 23:29:33.247] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-tracking/encounter-tracking.component.spec.ts
[2022-07-29 23:29:33.257] [DEBUG] [AstTestFileParser]: Parse operation ue5rb9hbw5l: Parsed 13 total tests from file 'C:/PROJECT/src/app/components/encounter-tracking/encounter-tracking.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.258] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounter-type-editor/encounter-type-editor.component.spec.ts
[2022-07-29 23:29:33.268] [DEBUG] [AstTestFileParser]: Parse operation n7q19rif5m: Parsed 7 total tests from file 'C:/PROJECT/src/app/components/encounter-type-editor/encounter-type-editor.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.268] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/encounters-tile/encounters-tile.component.spec.ts
[2022-07-29 23:29:33.275] [DEBUG] [AstTestFileParser]: Parse operation w6thzzatlne: Parsed 23 total tests from file 'C:/PROJECT/src/app/components/encounters-tile/encounters-tile.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.275] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/file-uploader/file-uploader.component.spec.ts
[2022-07-29 23:29:33.277] [DEBUG] [AstTestFileParser]: Parse operation 1p805g2achy: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/file-uploader/file-uploader.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.277] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/footer/footer.component.spec.ts
[2022-07-29 23:29:33.278] [DEBUG] [AstTestFileParser]: Parse operation ilvbnib6vc: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/footer/footer.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.278] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/group-filter/group-filter.component.spec.ts
[2022-07-29 23:29:33.286] [DEBUG] [AstTestFileParser]: Parse operation 3jb77hdx4sq: Parsed 6 total tests from file 'C:/PROJECT/src/app/components/group-filter/group-filter.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.286] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/home/home.component.spec.ts
[2022-07-29 23:29:33.291] [DEBUG] [AstTestFileParser]: Parse operation 9xtuf543t9: Parsed 7 total tests from file 'C:/PROJECT/src/app/components/home/home.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.291] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/implant-editor/implant-editor.component.spec.ts
[2022-07-29 23:29:33.309] [DEBUG] [AstTestFileParser]: Parse operation iih6dp8dby: Parsed 39 total tests from file 'C:/PROJECT/src/app/components/implant-editor/implant-editor.component.spec.ts' in 0.02 secs
[2022-07-29 23:29:33.309] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/inclinic-frequency/inclinic-frequency.component.spec.ts
[2022-07-29 23:29:33.322] [DEBUG] [AstTestFileParser]: Parse operation eeo0h7k3225: Parsed 10 total tests from file 'C:/PROJECT/src/app/components/inclinic-frequency/inclinic-frequency.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.322] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/lead-list/lead-list.component.spec.ts
[2022-07-29 23:29:33.338] [DEBUG] [AstTestFileParser]: Parse operation nlpj3fy4cjj: Parsed 42 total tests from file 'C:/PROJECT/src/app/components/lead-list/lead-list.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.338] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/login/login.component.spec.ts
[2022-07-29 23:29:33.340] [DEBUG] [AstTestFileParser]: Parse operation 4fi9bvdp4o1: Parsed 2 total tests from file 'C:/PROJECT/src/app/components/login/login.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.341] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/logout/logout.component.spec.ts
[2022-07-29 23:29:33.342] [DEBUG] [AstTestFileParser]: Parse operation 92v6l0t48a: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/logout/logout.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.342] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/lost-to-follow-up-dates/lost-to-follow-up-dates.component.spec.ts
[2022-07-29 23:29:33.382] [DEBUG] [AstTestFileParser]: Parse operation u2gp6cueofm: Parsed 37 total tests from file 'C:/PROJECT/src/app/components/lost-to-follow-up-dates/lost-to-follow-up-dates.component.spec.ts' in 0.04 secs
[2022-07-29 23:29:33.382] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/lost-to-follow-up-list/lost-to-follow-up-list.component.spec.ts
[2022-07-29 23:29:33.412] [DEBUG] [AstTestFileParser]: Parse operation c1glcp8wtei: Parsed 24 total tests from file 'C:/PROJECT/src/app/components/lost-to-follow-up-list/lost-to-follow-up-list.component.spec.ts' in 0.03 secs
[2022-07-29 23:29:33.412] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/lost-to-follow-up-tile/lost-to-follow-up-tile.component.spec.ts
[2022-07-29 23:29:33.423] [DEBUG] [AstTestFileParser]: Parse operation ti0ludoowmh: Parsed 30 total tests from file 'C:/PROJECT/src/app/components/lost-to-follow-up-tile/lost-to-follow-up-tile.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.423] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/metrics-data/metrics-data.component.spec.ts
[2022-07-29 23:29:33.425] [DEBUG] [AstTestFileParser]: Parse operation upwgsv0nn7m: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/metrics-data/metrics-data.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.425] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/new-implant-checklist/new-implant-checklist.component.spec.ts
[2022-07-29 23:29:33.441] [DEBUG] [AstTestFileParser]: Parse operation fjad7ft28p9: Parsed 13 total tests from file 'C:/PROJECT/src/app/components/new-implant-checklist/new-implant-checklist.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.441] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/new-implants-list/new-implants-list.component.spec.ts
[2022-07-29 23:29:33.446] [DEBUG] [AstTestFileParser]: Parse operation k3vay2zk2e: Parsed 5 total tests from file 'C:/PROJECT/src/app/components/new-implants-list/new-implants-list.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.446] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/new-implants-tile/new-implants-tile.component.spec.ts
[2022-07-29 23:29:33.455] [DEBUG] [AstTestFileParser]: Parse operation sw3zlfmc5j: Parsed 13 total tests from file 'C:/PROJECT/src/app/components/new-implants-tile/new-implants-tile.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.455] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/notification-list/notification-list.component.spec.ts
[2022-07-29 23:29:33.457] [DEBUG] [AstTestFileParser]: Parse operation 9m7bnteynqh: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/notification-list/notification-list.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.457] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/observation-logger/observation-logger.component.spec.ts
[2022-07-29 23:29:33.458] [DEBUG] [AstTestFileParser]: Parse operation 1bhbayrx3oo: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/observation-logger/observation-logger.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.458] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-calls-tile/patient-calls-tile.component.spec.ts
[2022-07-29 23:29:33.463] [DEBUG] [AstTestFileParser]: Parse operation 5b7kdnfiyf7: Parsed 13 total tests from file 'C:/PROJECT/src/app/components/patient-calls-tile/patient-calls-tile.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.463] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-contact/patient-contact.component.spec.ts
[2022-07-29 23:29:33.484] [DEBUG] [AstTestFileParser]: Parse operation fq52lhl8376: Parsed 37 total tests from file 'C:/PROJECT/src/app/components/patient-contact/patient-contact.component.spec.ts' in 0.02 secs
[2022-07-29 23:29:33.485] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-demographics/patient-demographics.component.spec.ts
[2022-07-29 23:29:33.505] [DEBUG] [AstTestFileParser]: Parse operation ml8y4qwwj6o: Parsed 45 total tests from file 'C:/PROJECT/src/app/components/patient-demographics/patient-demographics.component.spec.ts' in 0.02 secs
[2022-07-29 23:29:33.505] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-detail/patient-detail.component.spec.ts
[2022-07-29 23:29:33.566] [DEBUG] [AstTestFileParser]: Parse operation 9hq57yifif9: Parsed 60 total tests from file 'C:/PROJECT/src/app/components/patient-detail/patient-detail.component.spec.ts' in 0.06 secs
[2022-07-29 23:29:33.566] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-group/patient-group.component.spec.ts
[2022-07-29 23:29:33.583] [DEBUG] [AstTestFileParser]: Parse operation 7w2lt32zwc: Parsed 14 total tests from file 'C:/PROJECT/src/app/components/patient-group/patient-group.component.spec.ts' in 0.02 secs
[2022-07-29 23:29:33.583] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-history/patient-history.component.spec.ts
[2022-07-29 23:29:33.589] [DEBUG] [AstTestFileParser]: Parse operation 9s3gpw7biuo: Parsed 4 total tests from file 'C:/PROJECT/src/app/components/patient-history/patient-history.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.589] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-identification/patient-identification.component.spec.ts
[2022-07-29 23:29:33.606] [DEBUG] [AstTestFileParser]: Parse operation k5wlne4cni: Parsed 19 total tests from file 'C:/PROJECT/src/app/components/patient-identification/patient-identification.component.spec.ts' in 0.02 secs
[2022-07-29 23:29:33.606] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-indication-editor/patient-indication-editor.component.spec.ts
[2022-07-29 23:29:33.612] [DEBUG] [AstTestFileParser]: Parse operation 8ix610c0voe: Parsed 7 total tests from file 'C:/PROJECT/src/app/components/patient-indication-editor/patient-indication-editor.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.612] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-notes/patient-notes.component.spec.ts
[2022-07-29 23:29:33.617] [DEBUG] [AstTestFileParser]: Parse operation q5g1quue077: Parsed 4 total tests from file 'C:/PROJECT/src/app/components/patient-notes/patient-notes.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.617] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-status/patient-status.component.spec.ts
[2022-07-29 23:29:33.624] [DEBUG] [AstTestFileParser]: Parse operation kj67hjwedpr: Parsed 12 total tests from file 'C:/PROJECT/src/app/components/patient-status/patient-status.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.624] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/patient-warnings/patient-warnings.component.spec.ts
[2022-07-29 23:29:33.639] [DEBUG] [AstTestFileParser]: Parse operation 9n12clpwruh: Parsed 38 total tests from file 'C:/PROJECT/src/app/components/patient-warnings/patient-warnings.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.639] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/physician-desktop/physician-desktop.component.spec.ts
[2022-07-29 23:29:33.683] [DEBUG] [AstTestFileParser]: Parse operation 3wu2mg1govg: Parsed 74 total tests from file 'C:/PROJECT/src/app/components/physician-desktop/physician-desktop.component.spec.ts' in 0.04 secs
[2022-07-29 23:29:33.683] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/popup-date/popup-date.component.spec.ts
[2022-07-29 23:29:33.685] [DEBUG] [AstTestFileParser]: Parse operation u0p4smfsvo: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/popup-date/popup-date.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.685] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/popup-message/popup-message.component.spec.ts
[2022-07-29 23:29:33.686] [DEBUG] [AstTestFileParser]: Parse operation 18ba4ncd3xg: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/popup-message/popup-message.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.686] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/preferred-clinic/preferred-clinic.component.spec.ts
[2022-07-29 23:29:33.694] [DEBUG] [AstTestFileParser]: Parse operation qxeka75voip: Parsed 10 total tests from file 'C:/PROJECT/src/app/components/preferred-clinic/preferred-clinic.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.694] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/recall-information/recall-information.component.spec.ts
[2022-07-29 23:29:33.699] [DEBUG] [AstTestFileParser]: Parse operation ii2dg4xlac: Parsed 15 total tests from file 'C:/PROJECT/src/app/components/recall-information/recall-information.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.699] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/select-device-type/select-device-type.component.spec.ts
[2022-07-29 23:29:33.703] [DEBUG] [AstTestFileParser]: Parse operation zni9ourz3f: Parsed 7 total tests from file 'C:/PROJECT/src/app/components/select-device-type/select-device-type.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.703] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/send-messages-tile/send-messages-tile.component.spec.ts
[2022-07-29 23:29:33.707] [DEBUG] [AstTestFileParser]: Parse operation mffd0iyrq2: Parsed 13 total tests from file 'C:/PROJECT/src/app/components/send-messages-tile/send-messages-tile.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.707] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/tile-container/tile-container.component.spec.ts
[2022-07-29 23:29:33.717] [DEBUG] [AstTestFileParser]: Parse operation i0rvwqp7z2f: Parsed 10 total tests from file 'C:/PROJECT/src/app/components/tile-container/tile-container.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.717] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/toast/toast.component.spec.ts
[2022-07-29 23:29:33.724] [DEBUG] [AstTestFileParser]: Parse operation rn4akd9zbd: Parsed 1 total tests from file 'C:/PROJECT/src/app/components/toast/toast.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.724] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/visit-number/visit-number.component.spec.ts
[2022-07-29 23:29:33.744] [DEBUG] [AstTestFileParser]: Parse operation 9c0wdrutix8: Parsed 20 total tests from file 'C:/PROJECT/src/app/components/visit-number/visit-number.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.744] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/visit-numbers-tile/visit-numbers-tile.component.spec.ts
[2022-07-29 23:29:33.753] [DEBUG] [AstTestFileParser]: Parse operation zc1123u6bwd: Parsed 13 total tests from file 'C:/PROJECT/src/app/components/visit-numbers-tile/visit-numbers-tile.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.753] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/zipnote-editor/zipnote-editor.component.spec.ts
[2022-07-29 23:29:33.761] [DEBUG] [AstTestFileParser]: Parse operation qt9d5jnlzz: Parsed 6 total tests from file 'C:/PROJECT/src/app/components/zipnote-editor/zipnote-editor.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.761] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/lazy-load-components/print-billing-slips/print-billing-slips.component.spec.ts
[2022-07-29 23:29:33.769] [DEBUG] [AstTestFileParser]: Parse operation haql4gcu2tg: Parsed 1 total tests from file 'C:/PROJECT/src/app/lazy-load-components/print-billing-slips/print-billing-slips.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.769] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/modules/admin/admin.component.spec.ts
[2022-07-29 23:29:33.771] [DEBUG] [AstTestFileParser]: Parse operation r7al9km5ol: Parsed 1 total tests from file 'C:/PROJECT/src/app/modules/admin/admin.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.771] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/modules/search/search.component.spec.ts
[2022-07-29 23:29:33.772] [DEBUG] [AstTestFileParser]: Parse operation g8yutlxfwp7: Parsed 1 total tests from file 'C:/PROJECT/src/app/modules/search/search.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.772] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/search/devices/search-devices.component.spec.ts
[2022-07-29 23:29:33.786] [DEBUG] [AstTestFileParser]: Parse operation 67ppbzrq113: Parsed 11 total tests from file 'C:/PROJECT/src/app/components/search/devices/search-devices.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.786] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/components/search/patients/search-patients.component.spec.ts
[2022-07-29 23:29:33.798] [DEBUG] [AstTestFileParser]: Parse operation wwc4bjyp5kk: Parsed 21 total tests from file 'C:/PROJECT/src/app/components/search/patients/search-patients.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.798] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/modules/admin/components/edit-encounters/edit-encounters.component.spec.ts
[2022-07-29 23:29:33.805] [DEBUG] [AstTestFileParser]: Parse operation o2mk9cf7ays: Parsed 17 total tests from file 'C:/PROJECT/src/app/modules/admin/components/edit-encounters/edit-encounters.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.806] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/modules/admin/components/edit-reports/edit-reports.component.spec.ts
[2022-07-29 23:29:33.807] [DEBUG] [AstTestFileParser]: Parse operation ej1frs3sa8w: Parsed 1 total tests from file 'C:/PROJECT/src/app/modules/admin/components/edit-reports/edit-reports.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.807] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/modules/admin/components/edit-users/edit-users.component.spec.ts
[2022-07-29 23:29:33.819] [DEBUG] [AstTestFileParser]: Parse operation eld6h5to5n: Parsed 5 total tests from file 'C:/PROJECT/src/app/modules/admin/components/edit-users/edit-users.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.820] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/modules/admin/components/user-editor/user-editor.component.spec.ts
[2022-07-29 23:29:33.829] [DEBUG] [AstTestFileParser]: Parse operation caqltzh9zb: Parsed 16 total tests from file 'C:/PROJECT/src/app/modules/admin/components/user-editor/user-editor.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.829] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/modules/shared/components/encounter-editor/encounter-editor.component.spec.ts
[2022-07-29 23:29:33.836] [DEBUG] [AstTestFileParser]: Parse operation 9hm5u89519: Parsed 13 total tests from file 'C:/PROJECT/src/app/modules/shared/components/encounter-editor/encounter-editor.component.spec.ts' in 0.01 secs
[2022-07-29 23:29:33.836] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/modules/shared/components/popup-choice/popup-choice.component.spec.ts
[2022-07-29 23:29:33.837] [DEBUG] [AstTestFileParser]: Parse operation 3bzie21q634: Parsed 1 total tests from file 'C:/PROJECT/src/app/modules/shared/components/popup-choice/popup-choice.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.837] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/modules/shared/components/select-physician/select-physician.component.spec.ts
[2022-07-29 23:29:33.841] [DEBUG] [AstTestFileParser]: Parse operation s6eep77vsvn: Parsed 6 total tests from file 'C:/PROJECT/src/app/modules/shared/components/select-physician/select-physician.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.841] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/app/modules/shared/components/text-viewer/text-viewer.component.spec.ts
[2022-07-29 23:29:33.845] [DEBUG] [AstTestFileParser]: Parse operation lfviq811ya: Parsed 4 total tests from file 'C:/PROJECT/src/app/modules/shared/components/text-viewer/text-viewer.component.spec.ts' in 0.00 secs
[2022-07-29 23:29:33.845] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/testing/test-data.ts
[2022-07-29 23:29:33.856] [DEBUG] [AstTestFileParser]: Parse operation zmavb931qnk: Parsed 0 total tests from file 'C:/PROJECT/src/testing/test-data.ts' in 0.01 secs
[2022-07-29 23:29:33.856] [DEBUG] [FileHandler]: Reading file async: C:/PROJECT/src/testing/test-util.ts
[2022-07-29 23:29:33.858] [DEBUG] [AstTestFileParser]: Parse operation zwakpba7i9: Parsed 0 total tests from file 'C:/PROJECT/src/testing/test-util.ts' in 0.00 secs
[2022-07-29 23:29:33.859] [DEBUG] [TestLocator]: Refreshed 111 spec files from glob list in 3.38 secs: ["**/*{.,-,_}{test,spec}.{ts,js}","**/{test,spec}{.,-,_}*.{ts,js}"]
[2022-07-29 23:29:34.342] [DEBUG] [KarmaCommandLineTestServerExecutor::SimpleProcess]: Process svsngyreg1f - PID 20292 exited with code '1' and signal 'null' for command: C:\Program Files\nodejs\node.EXE C:\PROJECT\node_modules\karma\bin\karma start C:/Users/Gregs/.vscode/extensions/lucono.karma-test-explorer-0.7.2/dist/karma.conf --no-single-run
[2022-07-29 23:29:34.342] [DEBUG] [KarmaTestServer]: Karma server process terminated
[2022-07-29 23:29:34.342] [DEBUG] [PortAcquisitionClient]: Releasing ports: 9976
[2022-07-29 23:29:34.342] [DEBUG] [PortAcquisitionClient]: Releasing ports: 9222
[2022-07-29 23:29:34.342] [ERROR] [DefaultTestManager]: System component terminated with message: Karma server quit unexpectedly
[2022-07-29 23:29:34.342] [DEBUG] [DefaultTestManager]: Test action in progress (System stop was not requested) - Initiating system stop
[2022-07-29 23:29:34.342] [DEBUG] [DefaultTestManager]: Stopping test manager
[2022-07-29 23:29:34.343] [DEBUG] [DefaultTestManager]: Stopping karma event listener
[2022-07-29 23:29:34.343] [DEBUG] [KarmaTestListener]: Closing connection with karma
[2022-07-29 23:29:34.344] [DEBUG] [KarmaTestListener]: Cleaning up connections
[2022-07-29 23:29:34.344] [DEBUG] [KarmaTestListener]: Karma connection closed on port 9999
[2022-07-29 23:29:34.346] [ERROR] [DefaultTestManager]: Error: Karma server quit unexpectedly
[2022-07-29 23:29:34.346] [DEBUG] [DefaultTestManager]: Stopping test manager
[2022-07-29 23:29:34.346] [DEBUG] [DefaultTestManager]: Karma event listener is already stopped
[2022-07-29 23:29:34.346] [DEBUG] [DefaultTestManager]: Karma server is already stopped
[2022-07-29 23:29:34.346] [DEBUG] [DefaultTestManager]: Stopped test manager
[2022-07-29 23:29:34.346] [ERROR] [KarmaTestExplorer]: Failed to load tests - Karma server quit unexpectedly
[2022-07-29 23:29:34.346] [DEBUG] [NotificationHandler]: Showing 'Error' notification with actions 'Retry Test Load' and message: Failed to load tests - Karma server quit unexpectedly
[2022-07-29 23:29:34.347] [DEBUG] [KarmaTestExplorer]: Updating loaded test store
[2022-07-29 23:29:34.347] [DEBUG] [KarmaTestExplorer]: Clearing loaded root suite
[2022-07-29 23:29:34.347] [DEBUG] [TestStore]: Clearing stored tests
[2022-07-29 23:29:34.348] [INFO] [KarmaTestExplorer]: Finished loading tests in 3.87 secs (Failed)
[2022-07-29 23:29:36.072] [DEBUG] [NotificationHandler]: User selected 'Show Log' for 'Error' notification: Failed to load tests - Karma server quit unexpectedly (Click to show log)

Karma Server log:

------------------------------------
Karma Test Explorer: Launching Karma
------------------------------------

29 07 2022 16:29:34.251:DEBUG [config]: Loading config C:\Users\Gregs\.vscode\extensions\lucono.karma-test-explorer-0.7.2\dist\karma.conf

29 07 2022 16:29:34.262:DEBUG [karma-server]: Final config Config {
  LOG_DISABLE: 'OFF',
  LOG_ERROR: 'ERROR',
  LOG_WARN: 'WARN',
  LOG_INFO: 'INFO',
  LOG_DEBUG: 'DEBUG',
  frameworks: [ 'jasmine', '@angular-devkit/build-angular' ],
  protocol: 'http:',
  port: 9976,
  listenAddress: '0.0.0.0',
  hostname: 'localhost',
  httpsServerConfig: {},
  basePath: 'C:/PROJECT',
  files: [],
  browserConsoleLogOptions: { level: 'debug', format: '%b %T: %m', terminal: true },
  customContextFile: null,
  customDebugFile: null,
  customClientContextFile: null,
  exclude: [
    'C:/PROJECT/karma.conf.js',
    'C:/Users/Gregs/.vscode/extensions/lucono.karma-test-explorer-0.7.2/dist/karma.conf'
  ],
  logLevel: 'DEBUG',
  colors: true,
  autoWatch: true,
  autoWatchBatchDelay: 5000,
  restartOnFileChange: false,
  usePolling: false,
  reporters: [ 'KarmaTestExplorerReporter' ],
  singleRun: false,
  browsers: [ 'KarmaTestExplorer_CustomLauncher' ],
  captureTimeout: 120000,
  pingTimeout: 86400000,
  proxies: {},
  proxyValidateSSL: true,
  preprocessors: [Object: null prototype] {},
  preprocessor_priority: {},
  urlRoot: '/',
  upstreamProxy: undefined,
  reportSlowerThan: 0,
  loggers: [
    {
      type: 'console',
      layout: { type: 'pattern', pattern: '%[%d{DATETIME}:%p [%c]: %]%m' }
    }
  ],
  transports: [ 'polling', 'websocket' ],
  forceJSONP: false,
  plugins: [
    {
      'framework:jasmine': [
        'factory',
        [Function: initJasmine] { '$inject': [ 'config.files' ] }
      ],
      'reporter:karma-jasmine': [
        'factory',
        [Function: InjectKarmaJasmineReporter] {
          '$inject': [ 'config.singleRun' ]
        }
      ]
    },
    {
      'launcher:Chrome': [
        'type',
        [Function: ChromeBrowser] {
          '$inject': [ 'baseBrowserDecorator', 'args' ]
        }
      ],
      'launcher:ChromeHeadless': [
        'type',
        [Function: ChromeHeadlessBrowser] {
          '$inject': [ 'baseBrowserDecorator', 'args' ]
        }
      ],
      'launcher:ChromeCanary': [
        'type',
        [Function: ChromeCanaryBrowser] {
          '$inject': [ 'baseBrowserDecorator', 'args' ]
        }
      ],
      'launcher:ChromeCanaryHeadless': [
        'type',
        [Function: ChromeCanaryHeadlessBrowser] {
          '$inject': [ 'baseBrowserDecorator', 'args' ]
        }
      ],
      'launcher:Chromium': [
        'type',
        [Function: ChromiumBrowser] {
          '$inject': [ 'baseBrowserDecorator', 'args' ]
        }
      ],
      'launcher:ChromiumHeadless': [ 'type', [Function: ChromiumHeadlessBrowser] ],
      'launcher:Dartium': [
        'type',
        [Function: DartiumBrowser] {
          '$inject': [ 'baseBrowserDecorator', 'args' ]
        }
      ],
      test: {
        isJSFlags: [Function: isJSFlags],
        sanitizeJSFlags: [Function: sanitizeJSFlags],
        headlessGetOptions: [Function: headlessGetOptions],
        canaryGetOptions: [Function: canaryGetOptions]
      }
    },
    {
      'reporter:kjhtml': [
        'type',
        [Function: initReporter] {
          '$inject': [ 'config', 'baseReporterDecorator' ]
        }
      ]
    },
    {
      'preprocessor:coverage': [
        'factory',
        [Function: createCoveragePreprocessor] {
          '$inject': [
            'logger',
            'config.basePath',
            'config.reporters',
            'config.coverageReporter'
          ]
        }
      ],
      'reporter:coverage': [
        'type',
        [Function: CoverageReporter] {
          '$inject': [ 'config', 'helper', 'logger', 'emitter' ]
        }
      ]
    },
    {
      'reporter:spec': [
        'type',
        [Function: SpecReporter] {
          '$inject': [ 'baseReporterDecorator', 'formatError', 'config' ]
        }
      ]
    },
    {
      'framework:@angular-devkit/build-angular': [
        'factory',
        [Function: init] { '$inject': [ 'config', 'emitter' ] }
      ],
      'reporter:@angular-devkit/build-angular--sourcemap-reporter': [
        'type',
        [Function: sourceMapReporter] {
          '$inject': [ 'baseReporterDecorator', 'config' ]
        }
      ],
      'reporter:@angular-devkit/build-angular--event-reporter': [
        'type',
        [Function: eventReporter] {
          '$inject': [ 'baseReporterDecorator', 'config' ]
        }
      ],
      'middleware:@angular-devkit/build-angular--blocker': [ 'factory', [Function: requestBlocker] ],
      'middleware:@angular-devkit/build-angular--fallback': [ 'factory', [Function: fallbackMiddleware] ]
    },
    {
      'reporter:KarmaTestExplorerReporter': [
        'type',
        [Function: KarmaTestExplorerReporter] {
          '$inject': [ 'baseReporterDecorator', 'emitter', 'logger', 'injector' ]
        }
      ]
    },
    [Object: null prototype] {
      'launcher:KarmaTestExplorer_CustomLauncher': [ 'factory', [Function (anonymous)] ]
    }
  ],
  client: {
    args: [],
    useIframe: true,
    runInParent: false,
    captureConsole: true,
    clearContext: false,
    allowedReturnUrlPatterns: [ '^https?://' ],
    jasmine: { timeoutInterval: 50000 }
  },
  defaultClient: {
    args: [],
    useIframe: true,
    runInParent: false,
    captureConsole: true,
    clearContext: false,
    allowedReturnUrlPatterns: [ '^https?://' ],
    jasmine: { timeoutInterval: 50000 }
  },
  browserDisconnectTimeout: 30000,
  browserDisconnectTolerance: 0,
  browserNoActivityTimeout: 86400000,
  processKillTimeout: 2000,
  concurrency: Infinity,
  failOnEmptyTestSuite: true,
  retryLimit: 3,
  detached: false,
  crossOriginAttribute: true,
  browserSocketTimeout: 30000,
  cmd: 'start',
  configFile: 'C:\\Users\\Gregs\\.vscode\\extensions\\lucono.karma-test-explorer-0.7.2\\dist\\karma.conf',
  coverageReporter: {
    dir: 'C:\\PROJECT\\coverage\\PROJECT',
    subdir: '.',
    reporters: [
      { type: 'html' },
      { type: 'text-summary' },
      { type: 'cobertura' }
    ],
    fixWebpackSourcePaths: true
  },
  customLaunchers: {
    KarmaTestExplorer_CustomLauncher: {
      base: 'Chrome',
      flags: [
        '--headless',
        '--disable-gpu',
        '--disable-dev-shm-usage',
        '--remote-debugging-port=9222'
      ]
    }
  },
  set: [Function (anonymous)]
}

29 07 2022 16:29:34.262:DEBUG [plugin]: Loading inline plugin defining framework:jasmine, reporter:karma-jasmine.

29 07 2022 16:29:34.263:DEBUG [plugin]: Loading inline plugin defining launcher:Chrome, launcher:ChromeHeadless, launcher:ChromeCanary, launcher:ChromeCanaryHeadless, launcher:Chromium, launcher:ChromiumHeadless, launcher:Dartium, test.

29 07 2022 16:29:34.263:DEBUG [plugin]: Loading inline plugin defining reporter:kjhtml.

29 07 2022 16:29:34.263:DEBUG [plugin]: Loading inline plugin defining preprocessor:coverage, reporter:coverage.
29 07 2022 16:29:34.263:DEBUG [plugin]: Loading inline plugin defining reporter:spec.

29 07 2022 16:29:34.263:DEBUG [plugin]: Loading inline plugin defining framework:@angular-devkit/build-angular, reporter:@angular-devkit/build-angular--sourcemap-reporter, reporter:@angular-devkit/build-angular--event-reporter, middleware:@angular-devkit/build-angular--blocker, middleware:@angular-devkit/build-angular--fallback.

29 07 2022 16:29:34.263:DEBUG [plugin]: Loading inline plugin defining reporter:KarmaTestExplorerReporter.

29 07 2022 16:29:34.263:DEBUG [plugin]: Loading inline plugin defining launcher:KarmaTestExplorer_CustomLauncher.

29 07 2022 16:29:34.289:ERROR [karma-server]: Server start failed on port 9976: Error: The '@angular-devkit/build-angular/plugins/karma' karma plugin is meant to be used from within Angular CLI and will not work correctly outside of it.

29 07 2022 16:29:34.290:DEBUG [web-server]: Instantiating middleware

29 07 2022 16:29:34.291:DEBUG [reporter]: Trying to load reporter: KarmaTestExplorerReporter

29 07 2022 16:29:34.294:DEBUG [reporter:KarmaTestExplorerReporter]: Using socket port from 'KarmaTestExplorer_karmaSocketPort' env variable: 9999

29 07 2022 16:29:34.295:DEBUG [reporter:KarmaTestExplorerReporter]: Using ping timeout of '86400000' and ping interval of '86400000'

29 07 2022 16:29:34.295:DEBUG [reporter]: Trying to load color-version of reporter: KarmaTestExplorerReporter (KarmaTestExplorerReporter_color)

29 07 2022 16:29:34.295:DEBUG [reporter]: Couldn't load color-version.

29 07 2022 16:29:34.303:DEBUG [reporter:KarmaTestExplorerReporter]: No specific handler for event: exit

29 07 2022 16:29:34.303:DEBUG [launcher]: Disconnecting all browsers

29 07 2022 16:29:34.304:DEBUG [proxy]: Destroying proxy agents

Screenshots

Please Provide the Following Information

  • OS: Windows 10 Pro
  • Environment: PC
  • Node Version: 14.8.10
  • VS Code Version: 1.69.2
  • Karma Version: 6.3.17
  • Frameworks: Angular 13

Additional Context

I've released an update (v0.7.3) to the marketplace. Update to the new version in VSCode and confirm if the issue is addressed.

This problem is fixed in 0.7.3. Thanks for the quick turnaround!