Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cypress Component test crashes after empty vue.config.js is added. #23896

Closed
msebas opened this issue Sep 20, 2022 · 4 comments · Fixed by #23936
Closed

Cypress Component test crashes after empty vue.config.js is added. #23896

msebas opened this issue Sep 20, 2022 · 4 comments · Fixed by #23936
Labels
CT Issue related to component testing

Comments

@msebas
Copy link
Contributor

msebas commented Sep 20, 2022

Current behavior

If I add an empty vue.config.js to the project described below ./node_modules/.bin/cypress run --component fails to compile giving

...
Running:  HelloWorld.cy.ts                                                                (1 of 1)
4 assets
37 modules

ERROR in ./cypress/support/component.ts 5:8
Module parse failed: Unexpected token (5:8)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| import { mount } from 'cypress/vue'
| 
> declare global {
|   namespace Cypress {
|     interface Chainable {

ERROR in ./src/components/HelloWorld.vue 1:0
Module parse failed: Unexpected token (1:0)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> <template>
|   <div class="hello">
|     <h1>Test</h1>

webpack 5.74.0 compiled with 2 errors in 359 ms
...

as error message.

I tried to debug it and found that the configurations of webpack with and without a vue.config.js differ. My knowledge about webpack is quite limited, but for me it seems like the plugins configuration is missing critical options, the module.rules are empty and module.noParse is undefined. On top are the output directories different.
I made a screenshot of the evaluations (this is in both cases the webpack compiler instance, left is the version without vue.config.js that works).

Screenshot_20220920_080300

Desired behavior

Cypress should run with and without an empty vue.config.js present.

Test code to reproduce

Screenshot_20220920_144736

  • src/components/HelloWorld.cy.ts:

describe('<HelloWorld />', () => {
  it('renders', () => {
    // see: https://test-utils.vuejs.org/guide/
    cy.mount(HelloWorld)
  })
})
  • src/components/HelloWorld.vue:
  <div class="hello">
    <h1>Test</h1>
  </div>
</template>

<script lang="ts">
import { Vue } from "vue-class-component";

export default class HelloWorld extends Vue {}
</script>

<style scoped>
</style>
  • cypress.config.ts:

export default defineConfig({
  component: {
    devServer: {
      framework: 'vue-cli',
      bundler: 'webpack',
    },
  },
})
  • package.json:
  "name": "todoapp",
  "version": "0.1.0",
  "type": "module",
  "scripts": {
    "serve": "vue-cli-service serve",
    "cypress:open": "cypress open",
    "cypress:run": "cypress run --component"
  },
  "dependencies": {
    "core-js": "~3.25.2",
    "vue": "~3.2.39",
    "vue-class-component": "~8.0.0-0",
    "webpack-bundle-tracker": "~1.6.0"
  },
  "devDependencies": {
    "@cypress/vue": "~3.1.0",
    "@cypress/webpack-dev-server": "~2.3.0",
    "@types/jest": "~29.0.3",
    "@vue/cli-plugin-typescript": "~5.0.0",
    "@vue/cli-service": "~5.0.0",
    "@vue/compiler-sfc": "~3.2.39",
    "cypress": "~10.8.0",
    "prettier": "~2.7.1",
    "typescript": "~4.1.5"
  }
}

  • tsconfig.js:
  "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "moduleResolution": "node",
    "baseUrl": ".",
    "types": [
      "webpack-env",
      "jest"
    ]
  },
  "include": [
    "src/**/*.ts",
    "src/**/*.vue"
  ],
  "exclude": [
    "node_modules"
  ]
}
  • vue.config.js is empty
  • cypress/support/commands.ts is empty
  • cypress/support/component.ts:
import './commands'
import { mount } from 'cypress/vue'

declare global {
  namespace Cypress {
    interface Chainable {
      mount: typeof mount
    }
  }
}

Cypress.Commands.add('mount', mount)

Cypress Version

10.8.0

Node version

16.13.1

Operating System

openSuSE 15.2

Debug Logs

No response

Other

Any hints or solutions are greatly appreciated.
If there is anything missing or any questions arise please ask.

@msebas
Copy link
Contributor Author

msebas commented Sep 20, 2022

Debug Logs were too long to add, so I add them as response:

2022-09-20T12:33:25.928Z cypress:cli:cli cli starts with arguments ["/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node","/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/.bin/cypress","run","--component"]
2022-09-20T12:33:25.929Z cypress:cli NODE_OPTIONS is not set
2022-09-20T12:33:25.929Z cypress:cli:cli program parsing arguments
2022-09-20T12:33:25.932Z cypress:cli:cli running Cypress with args [ Command { _events: [Object: null prototype] { 'option:browser': [Function (anonymous)], 'option:ci-build-id': [Function (anonymous)], 'option:component': [Function (anonymous)], 'option:config': [Function (anonymous)], 'option:config-file': [Function (anonymous)], 'option:e2e': [Function (anonymous)], 'option:env': [Function (anonymous)], 'option:group': [Function (anonymous)], 'option:key': [Function (anonymous)], 'option:headed': [Function (anonymous)], 'option:headless': [Function (anonymous)], 'option:no-exit': [Function (anonymous)], 'option:parallel': [Function (anonymous)], 'option:port': [Function (anonymous)], 'option:project': [Function (anonymous)], 'option:quiet': [Function (anonymous)], 'option:record': [Function (anonymous)], 'option:reporter': [Function (anonymous)], 'option:reporter-options': [Function (anonymous)], 'option:spec': [Function (anonymous)], 'option:tag': [Function (anonymous)], 'option:dev': [Function (anonymous)] }, _eventsCount: 22, _maxListeners: undefined, commands: [], options: [ [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option] ], parent: Command { _events: [Object: null prototype], _eventsCount: 1, _maxListeners: undefined, commands: [Array], options: [Array], parent: null, _allowUnknownOption: false, _args: [], rawArgs: [Array], _scriptPath: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/.bin/cypress', _name: 'cypress', _optionValues: {}, _storeOptionsAsProperties: true, _passCommandToAction: true, _actionResults: [], _actionHandler: null, _executableHandler: false, _executableFile: null, _defaultCommandName: null, _exitCallback: null, _aliases: [], _hidden: false, _helpFlags: '-h, --help', _helpDescription: 'display help for command', _helpShortFlag: '-h', _helpLongFlag: '--help', _hasImplicitHelpCommand: undefined, _helpCommandName: 'help', _helpCommandnameAndArgs: 'help [command]', _helpCommandDescription: 'display help for command', _usage: '<command> [options]', args: [Array], [Symbol(kCapture)]: false }, _allowUnknownOption: false, _args: [], rawArgs: null, _scriptPath: null, _name: 'run', _optionValues: {}, _storeOptionsAsProperties: true, _passCommandToAction: true, _actionResults: [], _actionHandler: [Function: listener], _executableHandler: false, _executableFile: null, _defaultCommandName: null, _exitCallback: null, _aliases: [], _hidden: false, _helpFlags: '-h, --help', _helpDescription: 'display help for command', _helpShortFlag: '-h', _helpLongFlag: '--help', _hasImplicitHelpCommand: 0, _helpCommandName: 'help', _helpCommandnameAndArgs: 'help [command]', _helpCommandDescription: 'display help for command', _usage: '[options]', _description: 'Runs Cypress tests from the CLI without the GUI', _argsDescription: undefined, exit: true, component: true, args: [], [Symbol(kCapture)]: false } ]
2022-09-20T12:33:26.012Z cypress:cli:cli variable-length opts parsed { args: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/.bin/cypress', 'run', '--component' ], opts: Command { _events: [Object: null prototype] { 'option:browser': [Function (anonymous)], 'option:ci-build-id': [Function (anonymous)], 'option:component': [Function (anonymous)], 'option:config': [Function (anonymous)], 'option:config-file': [Function (anonymous)], 'option:e2e': [Function (anonymous)], 'option:env': [Function (anonymous)], 'option:group': [Function (anonymous)], 'option:key': [Function (anonymous)], 'option:headed': [Function (anonymous)], 'option:headless': [Function (anonymous)], 'option:no-exit': [Function (anonymous)], 'option:parallel': [Function (anonymous)], 'option:port': [Function (anonymous)], 'option:project': [Function (anonymous)], 'option:quiet': [Function (anonymous)], 'option:record': [Function (anonymous)], 'option:reporter': [Function (anonymous)], 'option:reporter-options': [Function (anonymous)], 'option:spec': [Function (anonymous)], 'option:tag': [Function (anonymous)], 'option:dev': [Function (anonymous)] }, _eventsCount: 22, _maxListeners: undefined, commands: [], options: [ [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option] ], parent: Command { _events: [Object: null prototype], _eventsCount: 1, _maxListeners: undefined, commands: [Array], options: [Array], parent: null, _allowUnknownOption: false, _args: [], rawArgs: [Array], _scriptPath: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/.bin/cypress', _name: 'cypress', _optionValues: {}, _storeOptionsAsProperties: true, _passCommandToAction: true, _actionResults: [], _actionHandler: null, _executableHandler: false, _executableFile: null, _defaultCommandName: null, _exitCallback: null, _aliases: [], _hidden: false, _helpFlags: '-h, --help', _helpDescription: 'display help for command', _helpShortFlag: '-h', _helpLongFlag: '--help', _hasImplicitHelpCommand: undefined, _helpCommandName: 'help', _helpCommandnameAndArgs: 'help [command]', _helpCommandDescription: 'display help for command', _usage: '<command> [options]', args: [Array], [Symbol(kCapture)]: false }, _allowUnknownOption: false, _args: [], rawArgs: null, _scriptPath: null, _name: 'run', _optionValues: {}, _storeOptionsAsProperties: true, _passCommandToAction: true, _actionResults: [], _actionHandler: [Function: listener], _executableHandler: false, _executableFile: null, _defaultCommandName: null, _exitCallback: null, _aliases: [], _hidden: false, _helpFlags: '-h, --help', _helpDescription: 'display help for command', _helpShortFlag: '-h', _helpLongFlag: '--help', _hasImplicitHelpCommand: 0, _helpCommandName: 'help', _helpCommandnameAndArgs: 'help [command]', _helpCommandDescription: 'display help for command', _usage: '[options]', _description: 'Runs Cypress tests from the CLI without the GUI', _argsDescription: undefined, exit: true, component: true, args: [], [Symbol(kCapture)]: false } }
2022-09-20T12:33:26.013Z cypress:cli parsed cli options { component: true }
2022-09-20T12:33:26.013Z cypress:cli verifying Cypress app
2022-09-20T12:33:26.014Z cypress:cli checking environment variables
2022-09-20T12:33:26.019Z cypress:cli checking if executable exists /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress
2022-09-20T12:33:26.022Z cypress:cli Binary is executable? : true
2022-09-20T12:33:26.022Z cypress:cli binaryDir is  /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress
2022-09-20T12:33:26.022Z cypress:cli Reading binary package.json from: /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/package.json
2022-09-20T12:33:26.023Z cypress:cli Found binary version 10.8.0 installed in: /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress
2022-09-20T12:33:26.024Z cypress:cli { verified: true }
2022-09-20T12:33:26.024Z cypress:cli is Verified ? true
2022-09-20T12:33:26.024Z cypress:cli:run processing run options { component: true, key: null, spec: null, reporter: null, reporterOptions: null, project: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp' }
2022-09-20T12:33:26.024Z cypress:cli:run --key is not set, looking up environment variable CYPRESS_RECORD_KEY
2022-09-20T12:33:26.024Z cypress:cli:run run to spawn.start args ["--run-project","/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp","--testing-type","component"]
2022-09-20T12:33:26.025Z cypress:cli DISPLAY environment variable is set to :0 on Linux
Assuming this DISPLAY points at working X11 server,
Cypress will not spawn own Xvfb

NOTE: if the X11 server is NOT working, Cypress will exit without explanation,
  see https://github.com/cypress-io/cypress/issues/4034
Solution: Unset the DISPLAY variable and try again:
  DISPLAY= npx cypress run ...
2022-09-20T12:33:26.025Z cypress:cli needs to start own Xvfb? false
2022-09-20T12:33:26.025Z cypress:cli spawning, should retry on display problem? true
2022-09-20T12:33:26.030Z cypress:cli passing DISPLAY :0
2022-09-20T12:33:26.030Z cypress:cli spawn args [ '--no-sandbox', '--', '--run-project', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', '--testing-type', 'component', '--cwd', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', '--userNodePath', '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', '--userNodeVersion', '16.13.1' ] { detached: false, stdio: [ 'inherit', 'inherit', 'pipe' ] }
2022-09-20T12:33:26.030Z cypress:cli spawning Cypress with executable: /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress
2022-09-20T12:33:26.034Z cypress:cli piping child STDERR to process STDERR
2022-09-20T12:33:26.135Z cypress:ts registering ts-node on directory undefined
2022-09-20T12:33:26.179Z cypress:ts Running without ts-node hook in environment "production"
2022-09-20T12:33:26.737Z cypress:server:appdata path: /home/DABIT-ANALYTICS/sebastian.mueller/.config/Cypress/cy/production/cache
2022-09-20T12:33:26.770Z cypress:server:appdata path: /home/DABIT-ANALYTICS/sebastian.mueller/.config/Cypress/cy/production/browsers
2022-09-20T12:33:26.775Z cypress:server:cypress starting cypress with argv [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress', '--no-sandbox', '--', '--run-project', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', '--testing-type', 'component', '--cwd', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', '--userNodePath', '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', '--userNodeVersion', '16.13.1' ]
2022-09-20T12:33:26.775Z cypress:server:args argv array: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress', '--no-sandbox', '--run-project', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', '--testing-type', 'component', '--cwd', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', '--userNodePath', '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', '--userNodeVersion', '16.13.1' ]
2022-09-20T12:33:26.776Z cypress:server:args parsed argv options { options: { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, 'run-project': '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', 'testing-type': 'component', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1' } }
2022-09-20T12:33:26.778Z cypress:server:args argv parsed: { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1', invokedFromCli: true }
2022-09-20T12:33:26.778Z cypress:server:util:proxy found proxy environment variables {}
2022-09-20T12:33:26.778Z cypress:server:args options { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1', invokedFromCli: true, config: {} }
2022-09-20T12:33:26.778Z cypress:server:args argv options: { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1', invokedFromCli: true, config: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp' }
2022-09-20T12:33:26.779Z cypress:server:cypress from argv [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress', '--no-sandbox', '--run-project', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', '--testing-type', 'component', '--cwd', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', '--userNodePath', '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', '--userNodeVersion', '16.13.1' ] got options { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1', invokedFromCli: true, config: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp' }
2022-09-20T12:33:26.779Z cypress:server:cypress scaling electron app in headless mode

(Cypress:12061): Gtk-WARNING **: 14:33:26.800: Theme parsing error: colors.css:71:44: Invalid number for color value

(Cypress:12061): Gtk-WARNING **: 14:33:26.800: Theme parsing error: colors.css:72:44: Invalid number for color value

(Cypress:12061): Gtk-WARNING **: 14:33:26.800: Theme parsing error: colors.css:74:53: Invalid number for color value

(Cypress:12061): Gtk-WARNING **: 14:33:26.800: Theme parsing error: colors.css:75:53: Invalid number for color value

(Cypress:12061): Gtk-WARNING **: 14:33:26.800: Theme parsing error: colors.css:76:56: Invalid number for color value

(Cypress:12061): Gtk-WARNING **: 14:33:26.800: Theme parsing error: colors.css:77:65: Invalid number for color value
2022-09-20T12:33:26.862Z cypress:server:appdata path: /home/DABIT-ANALYTICS/sebastian.mueller/.config/Cypress/cy/production
[12219:0920/143326.883467:WARNING:sandbox_linux.cc(376)] InitializeSandbox() called with multiple threads in process gpu-process.
[12219:0920/143326.885856:ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported.
[12061:0920/143326.887212:WARNING:bluez_dbus_manager.cc(248)] Floss manager not present, cannot set Floss enable/disable.
2022-09-20T12:33:26.888Z cypress:server:cypress starting in mode run with options { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1', invokedFromCli: true, config: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp' }
2022-09-20T12:33:26.888Z cypress:server:cypress running Electron currently
2022-09-20T12:33:27.277Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.cloudLatestRunUpdateSpecData
2022-09-20T12:33:27.277Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.cloudProjectBySlug
2022-09-20T12:33:27.277Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.cloudProjectsBySlugs
2022-09-20T12:33:27.277Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.cloudSpecByPath
2022-09-20T12:33:27.277Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.cloudViewer
2022-09-20T12:33:27.277Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.versions
2022-09-20T12:33:27.278Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for CurrentProject.cloudProject
2022-09-20T12:33:27.280Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for RemoteFetchableCloudProjectResult.data
2022-09-20T12:33:27.281Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for RemoteFetchableCloudProjectSpecResult.data
2022-09-20T12:33:27.328Z cypress:server:browsers:utils getBrowsers
2022-09-20T12:33:27.331Z cypress:launcher:detect detecting if the following browsers are present [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', versionRegex: /Google Chrome (\S+)/m, binary: [ 'google-chrome', 'chrome', 'google-chrome-stable' ], minSupportedVersion: 64 }, { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', versionRegex: /Chromium (\S+)/m, binary: [ 'chromium-browser', 'chromium' ], minSupportedVersion: 64 }, { name: 'chrome', family: 'chromium', channel: 'beta', displayName: 'Chrome Beta', versionRegex: /Google Chrome (\S+) beta/m, binary: 'google-chrome-beta', minSupportedVersion: 64 }, { name: 'chrome', family: 'chromium', channel: 'canary', displayName: 'Canary', versionRegex: /Google Chrome Canary (\S+)/m, binary: 'google-chrome-canary', minSupportedVersion: 64 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', versionRegex: /^Mozilla Firefox ([^\sab]+)$/m, binary: 'firefox', minSupportedVersion: 86, validator: [Function: validator] }, { name: 'firefox', family: 'firefox', channel: 'dev', displayName: 'Firefox Developer Edition', versionRegex: /^Mozilla Firefox (\S+b\S*)$/m, binary: [ 'firefox-developer-edition', 'firefox' ], minSupportedVersion: 86 }, { name: 'firefox', family: 'firefox', channel: 'nightly', displayName: 'Firefox Nightly', versionRegex: /^Mozilla Firefox (\S+a\S*)$/m, binary: [ 'firefox-nightly', 'firefox-trunk' ], minSupportedVersion: 86 }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', versionRegex: /Microsoft Edge (\S+)/m, binary: [ 'edge', 'microsoft-edge' ], minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'canary', displayName: 'Edge Canary', versionRegex: /Microsoft Edge Canary (\S+)/m, binary: 'edge-canary', minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'beta', displayName: 'Edge Beta', versionRegex: /Microsoft Edge Beta (\S+)/m, binary: 'edge-beta', minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'dev', displayName: 'Edge Dev', versionRegex: /Microsoft Edge Dev (\S+)/m, binary: [ 'edge-dev', 'microsoft-edge-dev' ], minSupportedVersion: 79 } ]
2022-09-20T12:33:27.333Z cypress:server:browsers:utils WebKit is enabled, but there was an error constructing the WebKit browser: { err: Error: Cannot find module 'playwright-webkit' Require stack: - /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/utils.js - /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/index.js - /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/util/process_profiler.js - /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/index.js - /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/index.js - at Module._resolveFilename (node:internal/modules/cjs/loader:940:15) at Function.n._resolveFilename (node:electron/js2c/browser_init:245:1105) at Function.resolve (node:internal/modules/cjs/helpers:108:19) at getWebKitBrowser (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/utils.js:154:36) at Object.getBrowsers (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/utils.js:178:9) at BrowserDataSource.machineBrowsers (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/data-context/src/sources/BrowserDataSource.js:32:49) at ProjectLifecycleManager._setCurrentProject (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/data-context/src/data/ProjectLifecycleManager.js:310:26) at new ProjectLifecycleManager (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/data-context/src/data/ProjectLifecycleManager.js:64:18) at new DataContext (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/data-context/src/DataContext.js:92:33) at makeDataContext (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/makeDataContext.js:27:17) at module.exports (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/modes/index.js:24:82) at /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/cypress.js:86:34 at tryCatcher (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/util.js:16:23) at Function.Promise.attempt.Promise.try (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/method.js:39:29) at Object.runElectron (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/cypress.js:72:23) at Object.startInMode (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/cypress.js:230:21) at /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/cypress.js:179:19 at tryCatcher (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/util.js:16:23) at Promise._settlePromiseFromHandler (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:547:31) at Promise._settlePromise (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:604:18) at Promise._settlePromise0 (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:649:10) at Promise._settlePromises (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:729:18) at Promise._fulfill (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:673:18) at Promise._settlePromise (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:617:21) at Promise._settlePromise0 (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:649:10) at Promise._settlePromises (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:729:18) at Promise._fulfill (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:673:18) at Promise._settlePromise (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:617:21) at Promise._settlePromise0 (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:649:10) at Promise._settlePromises (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:729:18) at Promise._fulfill (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:673:18) at PromiseArray._resolve (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise_array.js:127:19) at PromiseArray._promiseFulfilled (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise_array.js:145:14) at Promise._settlePromise (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:609:26) at Promise._settlePromise0 (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:649:10) at Promise._settlePromises (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:729:18) at Promise._fulfill (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:673:18) at /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/nodeback.js:42:21 at /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/node_modules/fs-extra/node_modules/universalify/index.js:22:54 { code: 'MODULE_NOT_FOUND', requireStack: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/utils.js', '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/index.js', '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/util/process_profiler.js', '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/index.js', '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/index.js', undefined ] } }
2022-09-20T12:33:27.334Z cypress:scaffold-config:detect Detected cypress.config.ts - using TS
2022-09-20T12:33:27.415Z cypress:server:video using ffmpeg from /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/node_modules/@ffmpeg-installer/linux-x64/ffmpeg
2022-09-20T12:33:27.437Z cypress:lifecycle:ProjectConfigIpc fork child process { CHILD_PROCESS_FILE_PATH: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/node_modules/@packages/server/lib/plugins/child/require_async_child.js', configProcessArgs: [ '--projectRoot', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', '--file', '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress.config.ts' ], childOptions: { stdio: 'pipe', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', execPath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node' } }
2022-09-20T12:33:27.437Z cypress:lifecycle:ProjectConfigIpc found typescript in /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:27.437Z cypress:lifecycle:ProjectConfigIpc using --experimental-specifier-resolution=node with --loader file:///home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/node_modules/ts-node/esm/transpile-only.mjs
2022-09-20T12:33:27.443Z cypress:lifecycle:ProjectConfigIpc trigger the load of the file
(node:12517) ExperimentalWarning: --experimental-loader is an experimental feature. This feature could change at any time
(Use `node --trace-warnings ...` to show where the warning was created)
2022-09-20T12:33:27.583Z cypress:server:util:process_profiler current & mean memory and CPU usage by process group:
┌─────────┬───────────────────┬──────────────┬────────────────┬────────────┬────────────────┬──────────┬──────────────┬─────────────┐
│ (index) │       group       │ processCount │      pids      │ cpuPercent │ meanCpuPercent │ memRssMb │ meanMemRssMb │ maxMemRssMb │
├─────────┼───────────────────┼──────────────┼────────────────┼────────────┼────────────────┼──────────┼──────────────┼─────────────┤
│    0    │     'cypress'     │      1       │    '12061'     │     0      │       0        │  146.44  │    146.44    │   146.44    │
│    1    │ 'electron-shared' │      2       │ '12063, 12064' │     0      │       0        │  97.14   │    97.14     │    97.14    │
│    2    │      'other'      │      2       │ '12204, 12205' │     0      │       0        │   4.76   │     4.76     │    4.76     │
│    3    │      'TOTAL'      │      5       │      '-'       │     0      │       0        │  248.35  │    248.35    │   248.35    │
└─────────┴───────────────────┴──────────────┴────────────────┴────────────┴────────────────┴──────────┴──────────────┴─────────────┘
2022-09-20T12:33:27.584Z cypress:launcher:linux Could not extract version from stdout using regex: { stdout: 'Mozilla Firefox 91.4.0esr', versionRegex: /^Mozilla Firefox (\S+b\S*)$/m }
2022-09-20T12:33:27.627Z cypress:server:browsers:utils found browsers { browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91' } ] }
2022-09-20T12:33:27.701Z cypress:lifecycle:child:run_require_async_child:12517 configFile: /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress.config.ts
2022-09-20T12:33:27.701Z cypress:lifecycle:child:run_require_async_child:12517 projectRoot: /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:27.703Z cypress:lifecycle:child:run_require_async_child:12517 try loading /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress.config.ts
2022-09-20T12:33:27.703Z cypress:lifecycle:child:run_require_async_child:12517 Loading file /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress.config.ts
2022-09-20T12:33:27.723Z cypress:lifecycle:child:run_require_async_child:12517 User is loading an ESM config file
2022-09-20T12:33:27.723Z cypress:lifecycle:child:run_require_async_child:12517 importing esm file file:///home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress.config.ts
2022-09-20T12:33:27.954Z cypress:lifecycle:child:run_require_async_child:12517 loaded config file /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress.config.ts
2022-09-20T12:33:27.955Z cypress:lifecycle:ProjectConfigIpc loadConfig:reply
2022-09-20T12:33:27.955Z cypress:lifecycle:ProjectConfigManager config is loaded for file /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress.config.ts null
2022-09-20T12:33:27.955Z cypress:config:browser validating configuration
2022-09-20T12:33:27.957Z cypress:config:browser validating configuration
2022-09-20T12:33:27.958Z cypress:config:project setting config object { cliConfig: {}, projectName: 'tstapp', projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', config: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' } }, envFile: {}, options: { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1', invokedFromCli: true, config: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', socketId: 'mti55a9ua3', isTextTerminal: true, browser: 'electron', quiet: false, morgan: false, report: true, configFile: 'cypress.config.ts' }, configFile: 'cypress.config.ts' }
2022-09-20T12:33:27.958Z cypress:config:project config is { component: { devServer: { framework: 'vue-cli', bundler: 'webpack' } }, devServer: { framework: 'vue-cli', bundler: 'webpack' } }
2022-09-20T12:33:27.959Z cypress:config:project:utils merged config with options, got { component: { devServer: { framework: 'vue-cli', bundler: 'webpack' } }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true }
2022-09-20T12:33:27.962Z cypress:config:project:utils using CYPRESS_INTERNAL_ENV production
2022-09-20T12:33:27.963Z cypress:config:project:utils resolved config is { value: [], from: 'default' }
2022-09-20T12:33:27.963Z cypress:config:browser validating configuration
2022-09-20T12:33:27.963Z cypress:server:validation clientCerts: []
2022-09-20T12:33:27.964Z cypress:config:project:utils validate that there is no breaking config options before setupNodeEvents
2022-09-20T12:33:27.964Z cypress:data-context:sources:FileDataSource globbing pattern(s): [ 'cypress/support/component.{js,jsx,ts,tsx}' ]
2022-09-20T12:33:27.964Z cypress:data-context:sources:FileDataSource within directory: /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:27.955Z cypress:lifecycle:child:run_require_async_child:12517 loaded config from /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress.config.ts { component: { devServer: { framework: 'vue-cli', bundler: 'webpack' } } }
2022-09-20T12:33:27.970Z cypress:config:project:utils setting support file /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts
2022-09-20T12:33:27.970Z cypress:config:project:utils for project root /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:27.971Z cypress:config:project:utils resolved support file /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts
2022-09-20T12:33:27.971Z cypress:config:project:utils set support folder /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support
2022-09-20T12:33:27.972Z cypress:config:browser validating configuration
2022-09-20T12:33:27.972Z cypress:server:validation clientCerts: []
2022-09-20T12:33:27.972Z cypress:server:validation browsers [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ]
2022-09-20T12:33:27.976Z cypress:lifecycle:child:run_require_async_child:12517 setupTestingType component { additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', animationDistanceThreshold: 5, arch: 'x64', autoOpen: false, baseUrl: null, blockHosts: null, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], chromeWebSecurity: true, clientCertificates: [], clientRoute: '/__/', configFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress.config.ts', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', cypressEnv: 'production', defaultCommandTimeout: 4000, devServer: { framework: 'vue-cli', bundler: 'webpack' }, devServerPublicPathRoute: '/__cypress/src', downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSessionAndOrigin: false, experimentalSingleTabRunMode: false, experimentalSourceRewriting: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', hosts: null, includeShadowDom: false, indexHtmlFile: 'cypress/support/component-index.html', isInteractive: true, isTextTerminal: true, keystrokeDelay: 0, modifyObstructiveCode: true, morgan: false, namespace: '__cypress', numTestsKeptInMemory: 0, pageLoadTimeout: 60000, platform: 'linux', port: null, projectId: null, projectName: 'tstapp', projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, redirectionLimit: 20, report: true, reporter: 'spec', reporterOptions: null, reporterRoute: '/__cypress/reporter', requestTimeout: 5000, resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalSessionAndOrigin: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: [Array], from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, nodeVersion: { from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'linux', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 250, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/component.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: 'legacy', from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: true, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, viewportHeight: { value: 500, from: 'default' }, viewportWidth: { value: 500, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: '**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' } }, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', scrollBehavior: 'top', slowTestThreshold: 250, socketId: 'mti55a9ua3', socketIoCookie: '__socket', socketIoRoute: '/__socket', specPattern: '**/*.cy.{js,jsx,ts,tsx}', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, version: '10.8.0', video: true, videoCompression: 32, videoUploadOnPasses: true, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, xhrRoute: '/xhrs/', testingType: 'component' }
2022-09-20T12:33:28.003Z cypress:lifecycle:child:RunPlugins:12517 project root: /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:28.003Z cypress:lifecycle:child:RunPlugins:12517 passing config { additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', animationDistanceThreshold: 5, arch: 'x64', autoOpen: false, baseUrl: null, blockHosts: null, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], chromeWebSecurity: true, clientCertificates: [], clientRoute: '/__/', configFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress.config.ts', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', cypressEnv: 'production', defaultCommandTimeout: 4000, devServer: { framework: 'vue-cli', bundler: 'webpack' }, devServerPublicPathRoute: '/__cypress/src', downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSessionAndOrigin: false, experimentalSingleTabRunMode: false, experimentalSourceRewriting: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', hosts: null, includeShadowDom: false, indexHtmlFile: 'cypress/support/component-index.html', isInteractive: true, isTextTerminal: true, keystrokeDelay: 0, modifyObstructiveCode: true, morgan: false, namespace: '__cypress', numTestsKeptInMemory: 0, pageLoadTimeout: 60000, platform: 'linux', port: null, projectId: null, projectName: 'tstapp', projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, redirectionLimit: 20, report: true, reporter: 'spec', reporterOptions: null, reporterRoute: '/__cypress/reporter', requestTimeout: 5000, resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalSessionAndOrigin: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: [Array], from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, nodeVersion: { from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'linux', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 250, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/component.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: 'legacy', from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: true, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, viewportHeight: { value: 500, from: 'default' }, viewportWidth: { value: 500, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: '**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' } }, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', scrollBehavior: 'top', slowTestThreshold: 250, socketId: 'mti55a9ua3', socketIoCookie: '__socket', socketIoRoute: '/__socket', specPattern: '**/*.cy.{js,jsx,ts,tsx}', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, version: '10.8.0', video: true, videoCompression: 32, videoUploadOnPasses: true, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, xhrRoute: '/xhrs/', testingType: 'component' }
2022-09-20T12:33:28.003Z cypress:lifecycle:child:RunPlugins:12517 Loading the RunPlugins
2022-09-20T12:33:28.003Z cypress:lifecycle:child:RunPlugins:12517 register event _get:task:body with id 0
2022-09-20T12:33:28.003Z cypress:lifecycle:child:RunPlugins:12517 register event _get:task:keys with id 1
2022-09-20T12:33:28.004Z cypress:lifecycle:child:RunPlugins:12517 Calling setupNodeEvents
2022-09-20T12:33:28.004Z cypress:lifecycle:child:RunPlugins:12517 register event dev-server:start with id 2
2022-09-20T12:33:28.005Z cypress:lifecycle:child:RunPlugins:12517 register default preprocessor
2022-09-20T12:33:28.005Z cypress:server:plugins resolving typescript with projectRoot '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp'
2022-09-20T12:33:28.005Z cypress:server:plugins resolved typescript /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/typescript/lib/typescript.js
2022-09-20T12:33:28.005Z cypress:lifecycle:child:RunPlugins:12517 creating webpack preprocessor with options { typescript: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/typescript/lib/typescript.js' }
2022-09-20T12:33:28.149Z cypress:lifecycle:child:RunPlugins:12517 register event file:preprocessor with id 3
2022-09-20T12:33:28.149Z cypress:lifecycle:child:RunPlugins:12517 plugins file successfully loaded
2022-09-20T12:33:28.150Z cypress:lifecycle:ProjectConfigManager register plugins process event _get:task:body with id 0
2022-09-20T12:33:28.150Z cypress:lifecycle:EventRegistrar register event '_get:task:body'
2022-09-20T12:33:28.150Z cypress:lifecycle:ProjectConfigManager register plugins process event _get:task:keys with id 1
2022-09-20T12:33:28.150Z cypress:lifecycle:EventRegistrar register event '_get:task:keys'
2022-09-20T12:33:28.150Z cypress:lifecycle:ProjectConfigManager register plugins process event dev-server:start with id 2
2022-09-20T12:33:28.150Z cypress:lifecycle:EventRegistrar register event 'dev-server:start'
2022-09-20T12:33:28.150Z cypress:lifecycle:ProjectConfigManager register plugins process event file:preprocessor with id 3
2022-09-20T12:33:28.150Z cypress:lifecycle:EventRegistrar register event 'file:preprocessor'
2022-09-20T12:33:28.150Z cypress:config:browser validating configuration
2022-09-20T12:33:28.150Z cypress:config:project setting config object { cliConfig: {}, projectName: 'tstapp', projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', config: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' } }, envFile: {}, options: { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1', invokedFromCli: true, config: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', socketId: 'mti55a9ua3', isTextTerminal: true, browser: 'electron', quiet: false, morgan: false, report: true, configFile: 'cypress.config.ts' }, configFile: 'cypress.config.ts' }
2022-09-20T12:33:28.150Z cypress:config:project config is { component: { devServer: { framework: 'vue-cli', bundler: 'webpack' } }, devServer: { framework: 'vue-cli', bundler: 'webpack' } }
2022-09-20T12:33:28.151Z cypress:config:project:utils merged config with options, got { component: { devServer: { framework: 'vue-cli', bundler: 'webpack' } }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true }
2022-09-20T12:33:28.152Z cypress:config:project:utils using CYPRESS_INTERNAL_ENV production
2022-09-20T12:33:28.153Z cypress:config:project:utils resolved config is { value: [], from: 'default' }
2022-09-20T12:33:28.153Z cypress:config:browser validating configuration
2022-09-20T12:33:28.153Z cypress:server:validation clientCerts: []
2022-09-20T12:33:28.153Z cypress:config:project:utils validate that there is no breaking config options before setupNodeEvents
2022-09-20T12:33:28.153Z cypress:data-context:sources:FileDataSource globbing pattern(s): [ 'cypress/support/component.{js,jsx,ts,tsx}' ]
2022-09-20T12:33:28.153Z cypress:data-context:sources:FileDataSource within directory: /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:28.155Z cypress:config:project:utils setting support file /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts
2022-09-20T12:33:28.155Z cypress:config:project:utils for project root /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:28.155Z cypress:config:project:utils resolved support file /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts
2022-09-20T12:33:28.155Z cypress:config:project:utils set support folder /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support
2022-09-20T12:33:28.156Z cypress:config:browser validating configuration
2022-09-20T12:33:28.156Z cypress:server:validation clientCerts: []
2022-09-20T12:33:28.156Z cypress:server:validation browsers [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ]
2022-09-20T12:33:28.158Z cypress:config:project updateWithPluginValues { cfg: { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: [Object], devServer: [Object], envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: null, blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: null, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ [Object], [Object], [Object] ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: [Object], arch: [Object], baseUrl: [Object], blockHosts: [Object], chromeWebSecurity: [Object], clientCertificates: [Object], defaultCommandTimeout: [Object], downloadsFolder: [Object], env: {}, execTimeout: [Object], experimentalFetchPolyfill: [Object], experimentalInteractiveRunEvents: [Object], experimentalSessionAndOrigin: [Object], experimentalModifyObstructiveThirdPartyCode: [Object], experimentalSourceRewriting: [Object], experimentalSingleTabRunMode: [Object], experimentalStudio: [Object], experimentalWebKitSupport: [Object], fileServerFolder: [Object], fixturesFolder: [Object], excludeSpecPattern: [Object], includeShadowDom: [Object], keystrokeDelay: [Object], modifyObstructiveCode: [Object], nodeVersion: [Object], numTestsKeptInMemory: [Object], platform: [Object], pageLoadTimeout: [Object], port: [Object], projectId: [Object], redirectionLimit: [Object], reporter: [Object], reporterOptions: [Object], requestTimeout: [Object], resolvedNodePath: [Object], resolvedNodeVersion: [Object], responseTimeout: [Object], retries: [Object], screenshotOnRunFailure: [Object], screenshotsFolder: [Object], slowTestThreshold: [Object], scrollBehavior: [Object], supportFile: [Object], supportFolder: [Object], taskTimeout: [Object], testIsolation: [Object], trashAssetsBeforeRuns: [Object], userAgent: [Object], video: [Object], videoCompression: [Object], videosFolder: [Object], videoUploadOnPasses: [Object], viewportHeight: [Object], viewportWidth: [Object], waitForAnimations: [Object], watchForFileChanges: [Object], specPattern: [Object], browsers: [Object], hosts: [Object], isInteractive: [Object] } }, modifiedConfig: {} }
2022-09-20T12:33:28.158Z cypress:config:browser validating configuration
2022-09-20T12:33:28.158Z cypress:config:project validate that there is no breaking config options added by setupNodeEvents
2022-09-20T12:33:28.158Z cypress:config:project config diffs null
2022-09-20T12:33:28.160Z cypress:config:project merged config object { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: null, blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: null, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalSessionAndOrigin: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: [Array], from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, nodeVersion: { value: undefined, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'linux', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 250, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/component.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: 'legacy', from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: true, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, viewportHeight: { value: 500, from: 'default' }, viewportWidth: { value: 500, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: '**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' } } }
2022-09-20T12:33:28.160Z cypress:config:project merged plugins config { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: null, blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: null, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalSessionAndOrigin: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: [Array], from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, nodeVersion: { value: undefined, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'linux', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 250, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/component.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: 'legacy', from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: true, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, viewportHeight: { value: 500, from: 'default' }, viewportWidth: { value: 500, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: '**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' } } }
2022-09-20T12:33:28.161Z cypress:data-context:sources:FileDataSource globbing pattern(s): [ '**/*.cy.{js,jsx,ts,tsx}' ]
2022-09-20T12:33:28.161Z cypress:data-context:sources:FileDataSource within directory: /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:28.165Z cypress:data-context:sources:ProjectDataSource found specs [ '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/src/components/HelloWorld.cy.ts' ]
2022-09-20T12:33:28.166Z cypress:lifecycle:EventRegistrar plugin event registered? { eventName: 'dev-server:start', isRegistered: true }
2022-09-20T12:33:28.166Z cypress:lifecycle:EventRegistrar execute plugin event 'dev-server:start' Node 'v16.14.2' with args: { specs: [ { fileExtension: '.ts', baseName: 'HelloWorld.cy.ts', fileName: 'HelloWorld', specFileExtension: '.cy.ts', relativeToCommonRoot: 'HelloWorld.cy.ts', specType: 'component', name: 'src/components/HelloWorld.cy.ts', relative: 'src/components/HelloWorld.cy.ts', absolute: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/src/components/HelloWorld.cy.ts' } ], config: { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: [Object], devServer: [Object], envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: null, blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: null, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ [Object], [Object], [Object] ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: [Object], arch: [Object], baseUrl: [Object], blockHosts: [Object], chromeWebSecurity: [Object], clientCertificates: [Object], defaultCommandTimeout: [Object], downloadsFolder: [Object], env: {}, execTimeout: [Object], experimentalFetchPolyfill: [Object], experimentalInteractiveRunEvents: [Object], experimentalSessionAndOrigin: [Object], experimentalModifyObstructiveThirdPartyCode: [Object], experimentalSourceRewriting: [Object], experimentalSingleTabRunMode: [Object], experimentalStudio: [Object], experimentalWebKitSupport: [Object], fileServerFolder: [Object], fixturesFolder: [Object], excludeSpecPattern: [Object], includeShadowDom: [Object], keystrokeDelay: [Object], modifyObstructiveCode: [Object], nodeVersion: [Object], numTestsKeptInMemory: [Object], platform: [Object], pageLoadTimeout: [Object], port: [Object], projectId: [Object], redirectionLimit: [Object], reporter: [Object], reporterOptions: [Object], requestTimeout: [Object], resolvedNodePath: [Object], resolvedNodeVersion: [Object], responseTimeout: [Object], retries: [Object], screenshotOnRunFailure: [Object], screenshotsFolder: [Object], slowTestThreshold: [Object], scrollBehavior: [Object], supportFile: [Object], supportFolder: [Object], taskTimeout: [Object], testIsolation: [Object], trashAssetsBeforeRuns: [Object], userAgent: [Object], video: [Object], videoCompression: [Object], videosFolder: [Object], videoUploadOnPasses: [Object], viewportHeight: [Object], viewportWidth: [Object], waitForAnimations: [Object], watchForFileChanges: [Object], specPattern: [Object], browsers: [Object], hosts: [Object], isInteractive: [Object] } } } undefined undefined
2022-09-20T12:33:28.166Z cypress:lifecycle:ProjectConfigManager call event dev-server:start for invocation id inv1
2022-09-20T12:33:28.167Z cypress:lifecycle:child:RunPlugins:12517 execute plugin event: dev-server:start ({ invocationId: 'inv1', eventId: 2 })
2022-09-20T12:33:28.168Z cypress:webpack-dev-server:sourceRelativeWebpackModules Framework: Attempting to source framework for /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:28.169Z cypress:webpack-dev-server:sourceRelativeWebpackModules Framework: Successfully sourced framework - { importPath: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/@vue/cli-service', packageJson: { name: '@vue/cli-service', version: '5.0.8', description: 'local service for vue-cli projects', main: 'lib/Service.js', typings: 'types/index.d.ts', bin: { 'vue-cli-service': 'bin/vue-cli-service.js' }, repository: { type: 'git', url: 'git+https://github.com/vuejs/vue-cli.git', directory: 'packages/@vue/cli-service' }, keywords: [ 'vue', 'cli' ], author: 'Evan You', license: 'MIT', bugs: { url: 'https://github.com/vuejs/vue-cli/issues' }, homepage: 'https://cli.vuejs.org/', dependencies: { '@babel/helper-compilation-targets': '^7.12.16', '@soda/friendly-errors-webpack-plugin': '^1.8.0', '@soda/get-current-script': '^1.0.2', '@types/minimist': '^1.2.0', '@vue/cli-overlay': '^5.0.8', '@vue/cli-plugin-router': '^5.0.8', '@vue/cli-plugin-vuex': '^5.0.8', '@vue/cli-shared-utils': '^5.0.8', '@vue/component-compiler-utils': '^3.3.0', '@vue/vue-loader-v15': 'npm:vue-loader@^15.9.7', '@vue/web-component-wrapper': '^1.3.0', acorn: '^8.0.5', 'acorn-walk': '^8.0.2', address: '^1.1.2', autoprefixer: '^10.2.4', browserslist: '^4.16.3', 'case-sensitive-paths-webpack-plugin': '^2.3.0', 'cli-highlight': '^2.1.10', clipboardy: '^2.3.0', cliui: '^7.0.4', 'copy-webpack-plugin': '^9.0.1', 'css-loader': '^6.5.0', 'css-minimizer-webpack-plugin': '^3.0.2', cssnano: '^5.0.0', debug: '^4.1.1', 'default-gateway': '^6.0.3', dotenv: '^10.0.0', 'dotenv-expand': '^5.1.0', 'fs-extra': '^9.1.0', globby: '^11.0.2', 'hash-sum': '^2.0.0', 'html-webpack-plugin': '^5.1.0', 'is-file-esm': '^1.0.0', 'launch-editor-middleware': '^2.2.1', 'lodash.defaultsdeep': '^4.6.1', 'lodash.mapvalues': '^4.6.0', 'mini-css-extract-plugin': '^2.5.3', minimist: '^1.2.5', 'module-alias': '^2.2.2', portfinder: '^1.0.26', postcss: '^8.2.6', 'postcss-loader': '^6.1.1', 'progress-webpack-plugin': '^1.0.12', ssri: '^8.0.1', 'terser-webpack-plugin': '^5.1.1', 'thread-loader': '^3.0.0', 'vue-loader': '^17.0.0', 'vue-style-loader': '^4.1.3', webpack: '^5.54.0', 'webpack-bundle-analyzer': '^4.4.0', 'webpack-chain': '^6.5.1', 'webpack-dev-server': '^4.7.3', 'webpack-merge': '^5.7.3', 'webpack-virtual-modules': '^0.4.2', 'whatwg-fetch': '^3.6.2' }, peerDependencies: { 'vue-template-compiler': '^2.0.0', 'webpack-sources': '*' }, peerDependenciesMeta: { 'cache-loader': [Object], 'less-loader': [Object], 'pug-plain-loader': [Object], 'raw-loader': [Object], 'sass-loader': [Object], 'stylus-loader': [Object], 'vue-template-compiler': [Object], 'webpack-sources': [Object] }, devDependencies: { 'cache-loader': '^4.1.0', sass: '^1.32.7', 'sass-loader': '^12.0.0', 'stylus-loader': '^6.1.0', vue: '^2.6.14', 'vue-router': '^3.5.1', 'vue-template-compiler': '^2.6.14', vuex: '^3.6.2' }, publishConfig: { access: 'public' }, engines: { node: '^12.0.0 || >= 14.0.0' }, gitHead: 'b154dbd7aca4b4538e6c483b1d4b817499d7b8eb' } }
2022-09-20T12:33:28.169Z cypress:webpack-dev-server:sourceRelativeWebpackModules Webpack: Attempting to source webpack from /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/@vue/cli-service
2022-09-20T12:33:28.173Z cypress:webpack-dev-server:sourceRelativeWebpackModules Webpack: Successfully sourced webpack - { importPath: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/webpack', packageJson: { name: 'webpack', version: '5.74.0', author: 'Tobias Koppers @sokra', description: 'Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.', license: 'MIT', dependencies: { '@types/eslint-scope': '^3.7.3', '@types/estree': '^0.0.51', '@webassemblyjs/ast': '1.11.1', '@webassemblyjs/wasm-edit': '1.11.1', '@webassemblyjs/wasm-parser': '1.11.1', acorn: '^8.7.1', 'acorn-import-assertions': '^1.7.6', browserslist: '^4.14.5', 'chrome-trace-event': '^1.0.2', 'enhanced-resolve': '^5.10.0', 'es-module-lexer': '^0.9.0', 'eslint-scope': '5.1.1', events: '^3.2.0', 'glob-to-regexp': '^0.4.1', 'graceful-fs': '^4.2.9', 'json-parse-even-better-errors': '^2.3.1', 'loader-runner': '^4.2.0', 'mime-types': '^2.1.27', 'neo-async': '^2.6.2', 'schema-utils': '^3.1.0', tapable: '^2.1.1', 'terser-webpack-plugin': '^5.1.3', watchpack: '^2.4.0', 'webpack-sources': '^3.2.3' }, peerDependenciesMeta: { 'webpack-cli': [Object] }, devDependencies: { '@babel/core': '^7.11.1', '@babel/preset-react': '^7.10.4', '@types/es-module-lexer': '^0.4.1', '@types/jest': '^27.4.0', '@types/node': '^17.0.16', assemblyscript: '^0.19.16', 'babel-loader': '^8.1.0', benchmark: '^2.1.4', 'bundle-loader': '^0.5.6', 'coffee-loader': '^1.0.0', coffeescript: '^2.5.1', 'core-js': '^3.6.5', coveralls: '^3.1.0', cspell: '^4.0.63', 'css-loader': '^5.0.1', 'date-fns': '^2.15.0', 'es5-ext': '^0.10.53', 'es6-promise-polyfill': '^1.2.0', eslint: '^7.14.0', 'eslint-config-prettier': '^8.1.0', 'eslint-plugin-jest': '^24.7.0', 'eslint-plugin-jsdoc': '^33.0.0', 'eslint-plugin-node': '^11.0.0', 'eslint-plugin-prettier': '^4.0.0', 'file-loader': '^6.0.0', 'fork-ts-checker-webpack-plugin': '^6.0.5', 'hash-wasm': '^4.9.0', husky: '^6.0.0', 'is-ci': '^3.0.0', istanbul: '^0.4.5', jest: '^27.5.0', 'jest-circus': '^27.5.0', 'jest-cli': '^27.5.0', 'jest-diff': '^27.5.0', 'jest-junit': '^13.0.0', 'json-loader': '^0.5.7', json5: '^2.1.3', less: '^4.0.0', 'less-loader': '^8.0.0', 'lint-staged': '^11.0.0', 'loader-utils': '^2.0.0', lodash: '^4.17.19', 'lodash-es': '^4.17.15', memfs: '^3.2.0', 'mini-css-extract-plugin': '^1.6.1', 'mini-svg-data-uri': '^1.2.3', nyc: '^15.1.0', 'open-cli': '^6.0.1', prettier: '^2.2.0', 'pretty-format': '^27.0.2', pug: '^3.0.0', 'pug-loader': '^2.4.0', 'raw-loader': '^4.0.1', react: '^17.0.1', 'react-dom': '^17.0.1', rimraf: '^3.0.2', 'script-loader': '^0.7.2', 'simple-git': '^2.17.0', 'strip-ansi': '^6.0.0', 'style-loader': '^2.0.0', terser: '^5.7.0', toml: '^3.0.0', tooling: 'webpack/tooling#v1.21.0', 'ts-loader': '^8.0.2', typescript: '^4.5.5', 'url-loader': '^4.1.0', 'wast-loader': '^1.11.0', 'webassembly-feature': '1.3.0', 'webpack-cli': '^4.3.0', xxhashjs: '^0.2.2', yamljs: '^0.3.0', 'yarn-deduplicate': '^3.1.0' }, engines: { node: '>=10.13.0' }, repository: { type: 'git', url: 'https://github.com/webpack/webpack.git' }, funding: { type: 'opencollective', url: 'https://opencollective.com/webpack' }, homepage: 'https://github.com/webpack/webpack', bugs: 'https://github.com/webpack/webpack/issues', main: 'lib/index.js', bin: { webpack: 'bin/webpack.js' }, types: 'types.d.ts', files: [ 'lib/', 'bin/', 'hot/', 'schemas/', 'SECURITY.md', 'module.d.ts', 'types.d.ts' ], scripts: { setup: 'node ./setup/setup.js', jest: 'node --expose-gc --max-old-space-size=4096 --experimental-vm-modules --trace-deprecation node_modules/jest-cli/bin/jest --logHeapUsage', test: 'node --expose-gc --max-old-space-size=4096 --experimental-vm-modules --trace-deprecation node_modules/jest-cli/bin/jest --logHeapUsage', 'test:update-snapshots': 'yarn jest -u', 'test:integration': 'node --expose-gc --max-old-space-size=4096 --experimental-vm-modules --trace-deprecation node_modules/jest-cli/bin/jest --logHeapUsage --testMatch "<rootDir>/test/*.{basictest,longtest,test}.js"', 'test:basic': 'node --expose-gc --max-old-space-size=4096 --experimental-vm-modules --trace-deprecation node_modules/jest-cli/bin/jest --logHeapUsage --testMatch "<rootDir>/test/*.basictest.js"', 'test:unit': 'node --max-old-space-size=4096 --experimental-vm-modules --trace-deprecation node_modules/jest-cli/bin/jest --testMatch "<rootDir>/test/*.unittest.js"', 'build:examples': 'cd examples && node buildAll.js', 'type-report': 'rimraf coverage && yarn cover:types && yarn cover:report && open-cli coverage/lcov-report/index.html', pretest: 'yarn lint', prelint: 'yarn setup', lint: 'yarn code-lint && yarn special-lint && yarn type-lint && yarn typings-test && yarn module-typings-test && yarn yarn-lint && yarn pretty-lint && yarn spellcheck', 'code-lint': "eslint . --ext '.js' --cache", 'type-lint': 'tsc', 'typings-test': 'tsc -p tsconfig.types.test.json', 'module-typings-test': 'tsc -p tsconfig.module.test.json', spellcheck: 'cspell "**/*"', 'special-lint': 'node node_modules/tooling/lockfile-lint && node node_modules/tooling/schemas-lint && node node_modules/tooling/inherit-types && node node_modules/tooling/format-schemas && node tooling/generate-runtime-code.js && node tooling/generate-wasm-code.js && node node_modules/tooling/format-file-header && node node_modules/tooling/compile-to-definitions && node node_modules/tooling/precompile-schemas && node node_modules/tooling/generate-types --no-template-literals', 'special-lint-fix': 'node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-schemas --write && node tooling/generate-runtime-code.js --write && node tooling/generate-wasm-code.js --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/compile-to-definitions --write && node node_modules/tooling/precompile-schemas --write && node node_modules/tooling/generate-types --no-template-literals --write', fix: 'yarn code-lint --fix && yarn special-lint-fix && yarn pretty-lint-fix', prepare: 'husky install', 'pretty-lint-base': 'prettier "*.{ts,json,yml,yaml,md}" "{setup,lib,bin,hot,benchmark,tooling,schemas}/**/*.json" "examples/*.md"', 'pretty-lint-base-all': 'yarn pretty-lint-base "*.js" "{setup,lib,bin,hot,benchmark,tooling,schemas}/**/*.js" "module.d.ts" "test/*.js" "test/helpers/*.js" "test/{configCases,watchCases,statsCases,hotCases,benchmarkCases}/**/webpack.config.js" "examples/**/webpack.config.js"', 'pretty-lint-fix': 'yarn pretty-lint-base-all --loglevel warn --write', 'pretty-lint': 'yarn pretty-lint-base --check', 'yarn-lint': 'yarn-deduplicate --fail --list -s highest yarn.lock', 'yarn-lint-fix': 'yarn-deduplicate -s highest yarn.lock', benchmark: 'node --max-old-space-size=4096 --experimental-vm-modules --trace-deprecation node_modules/jest-cli/bin/jest --testMatch "<rootDir>/test/*.benchmark.js" --runInBand', cover: 'yarn cover:all && yarn cover:report', 'cover:clean': 'rimraf .nyc_output coverage', 'cover:all': 'node --expose-gc --max-old-space-size=4096 --experimental-vm-modules node_modules/jest-cli/bin/jest --logHeapUsage --coverage', 'cover:basic': 'node --expose-gc --max-old-space-size=4096 --experimental-vm-modules node_modules/jest-cli/bin/jest --logHeapUsage --testMatch "<rootDir>/test/*.basictest.js" --coverage', 'cover:integration': 'node --expose-gc --max-old-space-size=4096 --experimental-vm-modules node_modules/jest-cli/bin/jest --logHeapUsage --testMatch "<rootDir>/test/*.{basictest,longtest,test}.js" --coverage', 'cover:integration:a': 'node --expose-gc --max-old-space-size=4096 --experimental-vm-modules node_modules/jest-cli/bin/jest --logHeapUsage --testMatch "<rootDir>/test/*.{basictest,test}.js" --coverage', 'cover:integration:b': 'node --expose-gc --max-old-space-size=4096 --experimental-vm-modules node_modules/jest-cli/bin/jest --logHeapUsage --testMatch "<rootDir>/test/*.longtest.js" --coverage', 'cover:unit': 'node --max-old-space-size=4096 --experimental-vm-modules node_modules/jest-cli/bin/jest --testMatch "<rootDir>/test/*.unittest.js" --coverage', 'cover:types': 'node node_modules/tooling/type-coverage', 'cover:merge': 'yarn mkdirp .nyc_output && nyc merge .nyc_output coverage/coverage-nyc.json && rimraf .nyc_output', 'cover:report': 'nyc report -t coverage' }, 'lint-staged': { '*.js|{lib,setup,bin,hot,tooling,schemas}/**/*.js|test/*.js|{test,examples}/**/webpack.config.js}': [Array], '*.{ts,json,yml,yaml,md}|examples/*.md': [Array], '*.md|{.github,benchmark,bin,examples,hot,lib,schemas,setup,tooling}/**/*.{md,yml,yaml,js,json}': [Array] }, jest: { forceExit: true, setupFilesAfterEnv: [Array], testMatch: [Array], watchPathIgnorePatterns: [Array], modulePathIgnorePatterns: [Array], transformIgnorePatterns: [Array], coverageDirectory: '<rootDir>/coverage', coveragePathIgnorePatterns: [Array], testEnvironment: 'node', coverageReporters: [Array] } }, module: [Function: f] { webpack: [Getter], validate: [Getter], validateSchema: [Getter], version: [Getter], cli: [Getter], AutomaticPrefetchPlugin: [Getter], AsyncDependenciesBlock: [Getter], BannerPlugin: [Getter], Cache: [Getter], Chunk: [Getter], ChunkGraph: [Getter], CleanPlugin: [Getter], Compilation: [Getter], Compiler: [Getter], ConcatenationScope: [Getter], ContextExclusionPlugin: [Getter], ContextReplacementPlugin: [Getter], DefinePlugin: [Getter], DelegatedPlugin: [Getter], Dependency: [Getter], DllPlugin: [Getter], DllReferencePlugin: [Getter], DynamicEntryPlugin: [Getter], EntryOptionPlugin: [Getter], EntryPlugin: [Getter], EnvironmentPlugin: [Getter], EvalDevToolModulePlugin: [Getter], EvalSourceMapDevToolPlugin: [Getter], ExternalModule: [Getter], ExternalsPlugin: [Getter], Generator: [Getter], HotUpdateChunk: [Getter], HotModuleReplacementPlugin: [Getter], IgnorePlugin: [Getter], JavascriptModulesPlugin: [Getter], LibManifestPlugin: [Getter], LibraryTemplatePlugin: [Getter], LoaderOptionsPlugin: [Getter], LoaderTargetPlugin: [Getter], Module: [Getter], ModuleFilenameHelpers: [Getter], ModuleGraph: [Getter], ModuleGraphConnection: [Getter], NoEmitOnErrorsPlugin: [Getter], NormalModule: [Getter], NormalModuleReplacementPlugin: [Getter], MultiCompiler: [Getter], Parser: [Getter], PrefetchPlugin: [Getter], ProgressPlugin: [Getter], ProvidePlugin: [Getter], RuntimeGlobals: [Getter], RuntimeModule: [Getter], SingleEntryPlugin: [Getter], SourceMapDevToolPlugin: [Getter], Stats: [Getter], Template: [Getter], UsageState: [Getter], WatchIgnorePlugin: [Getter], WebpackError: [Getter], WebpackOptionsApply: [Getter], WebpackOptionsDefaulter: [Getter], WebpackOptionsValidationError: [Getter], ValidationError: [Getter], cache: { MemoryCachePlugin: [Getter] }, config: { getNormalizedWebpackOptions: [Getter], applyWebpackOptionsDefaults: [Getter] }, dependencies: { ModuleDependency: [Getter], HarmonyImportDependency: [Getter], ConstDependency: [Getter], NullDependency: [Getter] }, ids: { ChunkModuleIdRangePlugin: [Getter], NaturalModuleIdsPlugin: [Getter], OccurrenceModuleIdsPlugin: [Getter], NamedModuleIdsPlugin: [Getter], DeterministicChunkIdsPlugin: [Getter], DeterministicModuleIdsPlugin: [Getter], NamedChunkIdsPlugin: [Getter], OccurrenceChunkIdsPlugin: [Getter], HashedModuleIdsPlugin: [Getter] }, javascript: { EnableChunkLoadingPlugin: [Getter], JavascriptModulesPlugin: [Getter], JavascriptParser: [Getter] }, optimize: { AggressiveMergingPlugin: [Getter], AggressiveSplittingPlugin: [Getter], InnerGraph: [Getter], LimitChunkCountPlugin: [Getter], MinChunkSizePlugin: [Getter], ModuleConcatenationPlugin: [Getter], RealContentHashPlugin: [Getter], RuntimeChunkPlugin: [Getter], SideEffectsFlagPlugin: [Getter], SplitChunksPlugin: [Getter] }, runtime: { GetChunkFilenameRuntimeModule: [Getter], LoadScriptRuntimeModule: [Getter] }, prefetch: { ChunkPrefetchPreloadPlugin: [Getter] }, web: { FetchCompileAsyncWasmPlugin: [Getter], FetchCompileWasmPlugin: [Getter], JsonpChunkLoadingRuntimeModule: [Getter], JsonpTemplatePlugin: [Getter] }, webworker: { WebWorkerTemplatePlugin: [Getter] }, node: { NodeEnvironmentPlugin: [Getter], NodeSourcePlugin: [Getter], NodeTargetPlugin: [Getter], NodeTemplatePlugin: [Getter], ReadFileCompileWasmPlugin: [Getter] }, electron: { ElectronTargetPlugin: [Getter] }, wasm: { AsyncWebAssemblyModulesPlugin: [Getter] }, library: { AbstractLibraryPlugin: [Getter], EnableLibraryPlugin: [Getter] }, container: { ContainerPlugin: [Getter], ContainerReferencePlugin: [Getter], ModuleFederationPlugin: [Getter], scope: [Getter] }, sharing: { ConsumeSharedPlugin: [Getter], ProvideSharedPlugin: [Getter], SharePlugin: [Getter], scope: [Getter] }, debug: { ProfilingPlugin: [Getter] }, util: { createHash: [Getter], comparators: [Getter], runtime: [Getter], serialization: [Getter], cleverMerge: [Getter], LazySet: [Getter] }, sources: [Getter], experiments: { schemes: [Object], ids: [Object] } }, majorVersion: 5 }
2022-09-20T12:33:28.173Z cypress:webpack-dev-server:sourceRelativeWebpackModules WebpackDevServer: Attempting to source webpack-dev-server from /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/@vue/cli-service
2022-09-20T12:33:28.327Z cypress:webpack-dev-server:sourceRelativeWebpackModules WebpackDevServer: Successfully sourced webpack-dev-server - { importPath: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/webpack-dev-server', packageJson: { name: 'webpack-dev-server', version: '4.11.0', description: 'Serves a webpack app. Updates the browser on changes.', bin: 'bin/webpack-dev-server.js', main: 'lib/Server.js', types: 'types/lib/Server.d.ts', author: 'Tobias Koppers @sokra', bugs: 'https://github.com/webpack/webpack-dev-server/issues', homepage: 'https://github.com/webpack/webpack-dev-server#readme', repository: 'https://github.com/webpack/webpack-dev-server', license: 'MIT', funding: { type: 'opencollective', url: 'https://opencollective.com/webpack' }, files: [ 'bin', 'lib', 'client', 'types' ], engines: { node: '>= 12.13.0' }, scripts: { 'fmt:check': 'prettier "{**/*,*}.{js,json,md,yml,css,ts}" --list-different', 'lint:js': 'eslint . --cache', 'lint:types': 'tsc --pretty --noEmit', lint: 'npm-run-all -p "fmt:**" "lint:**"', fmt: 'npm run fmt:check -- --write', 'fix:js': 'npm run lint:js -- --fix', fix: 'npm-run-all fix:js fmt', commitlint: 'commitlint --from=master', 'build:client': 'rimraf ./client/* && babel client-src/ --out-dir client/ --ignore "client-src/webpack.config.js" --ignore "client-src/modules" && webpack --config client-src/webpack.config.js', 'build:types': 'rimraf ./types/* && tsc --declaration --emitDeclarationOnly --outDir types && node ./scripts/extend-webpack-types.js && prettier "types/**/*.ts" --write && prettier "types/**/*.ts" --write', build: 'npm-run-all -p "build:**"', 'test:only': 'jest', 'test:coverage': 'npm run test:only -- --coverage', 'test:watch': 'npm run test:coverage --watch', test: 'npm run test:coverage', pretest: 'npm run lint', prepare: 'husky install && npm run build', release: 'standard-version' }, dependencies: { '@types/bonjour': '^3.5.9', '@types/connect-history-api-fallback': '^1.3.5', '@types/express': '^4.17.13', '@types/serve-index': '^1.9.1', '@types/serve-static': '^1.13.10', '@types/sockjs': '^0.3.33', '@types/ws': '^8.5.1', 'ansi-html-community': '^0.0.8', 'bonjour-service': '^1.0.11', chokidar: '^3.5.3', colorette: '^2.0.10', compression: '^1.7.4', 'connect-history-api-fallback': '^2.0.0', 'default-gateway': '^6.0.3', express: '^4.17.3', 'graceful-fs': '^4.2.6', 'html-entities': '^2.3.2', 'http-proxy-middleware': '^2.0.3', 'ipaddr.js': '^2.0.1', open: '^8.0.9', 'p-retry': '^4.5.0', rimraf: '^3.0.2', 'schema-utils': '^4.0.0', selfsigned: '^2.0.1', 'serve-index': '^1.9.1', sockjs: '^0.3.24', spdy: '^4.0.2', 'webpack-dev-middleware': '^5.3.1', ws: '^8.4.2' }, devDependencies: { '@babel/cli': '^7.17.3', '@babel/core': '^7.17.5', '@babel/eslint-parser': '^7.17.0', '@babel/plugin-transform-object-assign': '^7.14.5', '@babel/plugin-transform-runtime': '^7.17.0', '@babel/preset-env': '^7.16.11', '@babel/runtime': '^7.17.2', '@commitlint/cli': '^16.2.3', '@commitlint/config-conventional': '^16.2.1', '@types/compression': '^1.7.2', '@types/default-gateway': '^3.0.1', '@types/rimraf': '^3.0.2', '@types/sockjs-client': '^1.5.1', '@types/trusted-types': '^2.0.2', acorn: '^8.2.4', 'babel-jest': '^28.1.3', 'babel-loader': '^8.2.4', 'body-parser': '^1.19.2', 'core-js': '^3.21.1', 'css-loader': '^5.2.4', eslint: '^8.12.0', 'eslint-config-prettier': '^8.4.0', 'eslint-config-webpack': '^1.2.5', 'eslint-plugin-import': '^2.23.2', execa: '^5.1.1', 'file-loader': '^6.2.0', 'html-webpack-plugin': '^4.5.2', 'http-proxy': '^1.18.1', husky: '^7.0.0', jest: '^28.1.3', 'jest-environment-jsdom': '^28.1.3', klona: '^2.0.4', less: '^4.1.1', 'less-loader': '^7.3.0', 'lint-staged': '^12.3.4', marked: '^4.0.12', memfs: '^3.2.2', 'npm-run-all': '^4.1.5', prettier: '^2.6.1', puppeteer: '^13.4.1', 'require-from-string': '^2.0.2', rimraf: '^3.0.2', 'sockjs-client': '^1.6.1', 'standard-version': '^9.3.0', 'strip-ansi-v6': 'npm:strip-ansi@^6.0.0', 'style-loader': '^2.0.0', supertest: '^6.1.3', 'tcp-port-used': '^1.0.2', typescript: '^4.7.2', 'url-loader': '^4.1.1', webpack: '^5.71.0', 'webpack-cli': '^4.7.2', 'webpack-merge': '^5.8.0' }, peerDependencies: { webpack: '^4.37.0 || ^5.0.0' }, peerDependenciesMeta: { 'webpack-cli': [Object] } }, module: [class Server], majorVersion: 4 }
2022-09-20T12:33:28.327Z cypress:webpack-dev-server:sourceRelativeWebpackModules HtmlWebpackPlugin: Attempting to source html-webpack-plugin from /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/@vue/cli-service
2022-09-20T12:33:28.391Z cypress:webpack-dev-server:sourceRelativeWebpackModules HtmlWebpackPlugin: Successfully sourced html-webpack-plugin - { packageJson: { name: 'html-webpack-plugin', version: '5.5.0', license: 'MIT', description: 'Simplifies creation of HTML files to serve your webpack bundles', author: 'Jan Nicklas <j.nicklas@me.com> (https://github.com/jantimon)', main: 'index.js', types: 'typings.d.ts', files: [ 'lib/', 'index.js', 'default_index.ejs', 'typings.d.ts' ], scripts: { pretest: 'semistandard', posttest: 'tsc', commit: 'git-cz', 'build-examples': 'node examples/build-examples.js', test: 'jest --runInBand --verbose --coverage', 'test-watch': 'jest --runInBand --watch', puml: 'npx puml generate flow.puml -o flow.png', release: 'standard-version' }, semistandard: { ignore: [Array] }, devDependencies: { '@types/node': '11.13.9', commitizen: '^4.2.4', 'css-loader': '5.0.1', 'cz-conventional-changelog': '2.1.0', 'dir-compare': '^3.3.0', 'html-loader': '2.1.1', jest: '^27.2.5', 'mini-css-extract-plugin': '^1.6.0', pug: '3.0.2', 'pug-loader': '2.4.0', 'raw-loader': '4.0.2', rimraf: '2.6.3', semistandard: '^13.0.1', 'standard-version': '^9.3.0', 'style-loader': '2.0.0', typescript: '4.1.3', webpack: '5.24.3', 'webpack-cli': '4.5.0', 'webpack-recompilation-simulator': '3.2.0' }, dependencies: { '@types/html-minifier-terser': '^6.0.0', 'html-minifier-terser': '^6.0.2', lodash: '^4.17.21', 'pretty-error': '^4.0.0', tapable: '^2.0.0' }, peerDependencies: { webpack: '^5.20.0' }, keywords: [ 'webpack', 'plugin', 'html', 'html-webpack-plugin' ], bugs: 'https://github.com/jantimon/html-webpack-plugin/issues', homepage: 'https://github.com/jantimon/html-webpack-plugin', repository: 'https://github.com/jantimon/html-webpack-plugin.git', engines: { node: '>=10.13.0' }, config: { commitizen: [Object] }, jest: { watchPathIgnorePatterns: [Array], testEnvironment: 'node' }, funding: { type: 'opencollective', url: 'https://opencollective.com/html-webpack-plugin' } }, majorVersion: 5, importPath: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/html-webpack-plugin', module: [class HtmlWebpackPlugin] { version: 5, getHooks: [Function: getHtmlWebpackPluginHooks], createHtmlTagObject: [Function: createHtmlTagObject] } }
2022-09-20T12:33:28.506Z cypress:webpack-dev-server:vueCliHandler webpack config {}
2022-09-20T12:33:28.508Z cypress:webpack-dev-server:makeWebpackConfig User passed in user and framework webpack config with values {}
2022-09-20T12:33:28.508Z cypress:webpack-dev-server:makeWebpackConfig New webpack entries [ { fileExtension: '.ts', baseName: 'HelloWorld.cy.ts', fileName: 'HelloWorld', specFileExtension: '.cy.ts', relativeToCommonRoot: 'HelloWorld.cy.ts', specType: 'component', name: 'src/components/HelloWorld.cy.ts', relative: 'src/components/HelloWorld.cy.ts', absolute: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/src/components/HelloWorld.cy.ts' } ]
2022-09-20T12:33:28.508Z cypress:webpack-dev-server:makeWebpackConfig Project root /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:28.508Z cypress:webpack-dev-server:makeWebpackConfig Support file /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts
2022-09-20T12:33:28.508Z cypress:webpack-dev-server:makeDefaultWebpackConfig Using HtmlWebpackPlugin version 5.5.0 from /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/html-webpack-plugin
2022-09-20T12:33:28.509Z cypress:webpack-dev-server:makeWebpackConfig Merged webpack config { mode: 'development', optimization: { splitChunks: { chunks: 'all' } }, output: { filename: '[name].js', path: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/node_modules/@packages/server/node_modules/@cypress/webpack-dev-server/dist/dist', publicPath: '/__cypress/src/' }, plugins: [ HtmlWebpackPlugin { userOptions: [Object], version: 5 }, CypressCTWebpackPlugin { files: [Array], compilation: null, addLoaderContext: [Function (anonymous)], beforeCompile: [AsyncFunction (anonymous)], onSpecsChange: [AsyncFunction (anonymous)], addCompilationHooks: [Function (anonymous)], supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', devServerEvents: [EventEmitter], webpack: [Function] } ], devServer: { client: { overlay: false } }, entry: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/node_modules/@packages/server/node_modules/@cypress/webpack-dev-server/dist/browser.js' }
2022-09-20T12:33:28.679Z cypress:webpack-dev-server:start using webpack-dev-server v4
2022-09-20T12:33:28.821Z cypress:webpack-dev-server:sourceRelativeWebpackModules Webpack: Module._resolveFilename resolveFilename - /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/webpack/lib/index.js
2022-09-20T12:33:28.821Z cypress:webpack-dev-server:sourceRelativeWebpackModules Webpack: Module._load resolvePath - /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/webpack/lib/index.js
<i> [webpack-dev-server] Project is running at:
<i> [webpack-dev-server] Loopback: �[36mhttp://127.0.0.1:8081/�[39m
<i> [webpack-dev-server] Content not from webpack is served from '�[36m/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/public�[39m' directory
2022-09-20T12:33:28.884Z cypress:webpack-dev-server:devServer Component testing webpack server 4 started on port 8081
2022-09-20T12:33:28.891Z cypress:lifecycle:ProjectConfigManager promise resolved for id 'inv1' with value { port: 8081 }
2022-09-20T12:33:28.892Z cypress:server:browsers:utils searching for browser { nameOrPath: 'electron', filter: { name: 'electron', channel: 'stable' }, knownBrowsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ] }
2022-09-20T12:33:28.892Z cypress:data-context browser found to set electron
2022-09-20T12:33:28.895Z cypress:server:run run mode ready with options { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1', invokedFromCli: true, config: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', socketId: 'mti55a9ua3', isTextTerminal: true, browser: 'electron', quiet: false, morgan: false, report: true }
2022-09-20T12:33:28.895Z cypress:server:browsers:utils getBrowsers
2022-09-20T12:33:28.896Z cypress:launcher:detect detecting if the following browsers are present [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', versionRegex: /Google Chrome (\S+)/m, binary: [ 'google-chrome', 'chrome', 'google-chrome-stable' ], minSupportedVersion: 64 }, { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', versionRegex: /Chromium (\S+)/m, binary: [ 'chromium-browser', 'chromium' ], minSupportedVersion: 64 }, { name: 'chrome', family: 'chromium', channel: 'beta', displayName: 'Chrome Beta', versionRegex: /Google Chrome (\S+) beta/m, binary: 'google-chrome-beta', minSupportedVersion: 64 }, { name: 'chrome', family: 'chromium', channel: 'canary', displayName: 'Canary', versionRegex: /Google Chrome Canary (\S+)/m, binary: 'google-chrome-canary', minSupportedVersion: 64 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', versionRegex: /^Mozilla Firefox ([^\sab]+)$/m, binary: 'firefox', minSupportedVersion: 86, validator: [Function: validator] }, { name: 'firefox', family: 'firefox', channel: 'dev', displayName: 'Firefox Developer Edition', versionRegex: /^Mozilla Firefox (\S+b\S*)$/m, binary: [ 'firefox-developer-edition', 'firefox' ], minSupportedVersion: 86 }, { name: 'firefox', family: 'firefox', channel: 'nightly', displayName: 'Firefox Nightly', versionRegex: /^Mozilla Firefox (\S+a\S*)$/m, binary: [ 'firefox-nightly', 'firefox-trunk' ], minSupportedVersion: 86 }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', versionRegex: /Microsoft Edge (\S+)/m, binary: [ 'edge', 'microsoft-edge' ], minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'canary', displayName: 'Edge Canary', versionRegex: /Microsoft Edge Canary (\S+)/m, binary: 'edge-canary', minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'beta', displayName: 'Edge Beta', versionRegex: /Microsoft Edge Beta (\S+)/m, binary: 'edge-beta', minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'dev', displayName: 'Edge Dev', versionRegex: /Microsoft Edge Dev (\S+)/m, binary: [ 'edge-dev', 'microsoft-edge-dev' ], minSupportedVersion: 79 } ]
2022-09-20T12:33:28.896Z cypress:server:browsers:utils WebKit is enabled, but there was an error constructing the WebKit browser: { err: Error: Cannot find module 'playwright-webkit' Require stack: - /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/utils.js - /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/index.js - /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/util/process_profiler.js - /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/index.js - /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/index.js - at Module._resolveFilename (node:internal/modules/cjs/loader:940:15) at Function.n._resolveFilename (node:electron/js2c/browser_init:245:1105) at Function.resolve (node:internal/modules/cjs/helpers:108:19) at getWebKitBrowser (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/utils.js:154:36) at Object.getBrowsers [as get] (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/utils.js:178:9) at ready (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/modes/run.js:747:47) at Object.run (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/modes/run.js:862:16) at processTicksAndRejections (node:internal/process/task_queues:96:5) { code: 'MODULE_NOT_FOUND', requireStack: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/utils.js', '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/index.js', '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/util/process_profiler.js', '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/index.js', '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/index.js', undefined ] } }
2022-09-20T12:33:28.919Z cypress:webpack-dev-server:sourceRelativeWebpackModules Webpack: Module._resolveFilename resolveFilename - /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/webpack/lib/index.js
2022-09-20T12:33:28.919Z cypress:webpack-dev-server:sourceRelativeWebpackModules Webpack: Module._load resolvePath - /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/node_modules/webpack/lib/index.js
2022-09-20T12:33:29.014Z cypress:launcher:linux Could not extract version from stdout using regex: { stdout: 'Mozilla Firefox 91.4.0esr', versionRegex: /^Mozilla Firefox (\S+b\S*)$/m }
2022-09-20T12:33:29.053Z cypress:server:browsers:utils found browsers { browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91' } ] }
2022-09-20T12:33:29.053Z cypress:server:run found all system browsers [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ]
2022-09-20T12:33:29.054Z cypress:server:open_project open_project create /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:29.054Z cypress:server:open_project opening project /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:29.054Z cypress:server:open_project and options { socketId: 'mti55a9ua3', morgan: false, report: true, isTextTerminal: true, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], onWarning: [Function: onWarning], spec: undefined, onError: [Function (anonymous)], onReloadBrowser: [Function: onReloadBrowser], args: { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1', invokedFromCli: true, config: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', socketId: 'mti55a9ua3', isTextTerminal: true, browser: 'electron', quiet: false, morgan: false, report: true, onError: [Function (anonymous)], browsers: [ [Object], [Object], [Object] ] } }
2022-09-20T12:33:29.054Z cypress:server:project Project created { testingType: 'component', projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp' }
2022-09-20T12:33:29.055Z cypress:server:project opening project instance /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:29.055Z cypress:server:project project open options { report: true, onFocusTests: [Function: onFocusTests], onError: [Function (anonymous)], onWarning: [Function: onWarning], socketId: 'mti55a9ua3', morgan: false, isTextTerminal: true, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], spec: undefined, onReloadBrowser: [Function: onReloadBrowser], args: { _: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/Cypress' ], sandbox: false, runProject: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', testingType: 'component', cwd: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', userNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', userNodeVersion: '16.13.1', invokedFromCli: true, config: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', socketId: 'mti55a9ua3', isTextTerminal: true, browser: 'electron', quiet: false, morgan: false, report: true, onError: [Function (anonymous)], browsers: [ [Object], [Object], [Object] ] }, testingType: 'component' }
2022-09-20T12:33:29.055Z cypress:server:project project has config { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: 'http://localhost:8081', blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: null, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalSessionAndOrigin: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: [Array], from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, nodeVersion: { value: undefined, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'linux', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 250, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/component.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: 'legacy', from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: true, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, viewportHeight: { value: 500, from: 'default' }, viewportWidth: { value: 500, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: '**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' }, testingType: { value: 'component' } }, testingType: 'component', componentTesting: true }
2022-09-20T12:33:29.056Z cypress:server:server-base server open
2022-09-20T12:33:29.059Z cypress:network:client-certificates loaded client certificates for 0 URL(s)
2022-09-20T12:33:29.062Z cypress:server:server-base Server listening on  { address: '127.0.0.1', family: 'IPv4', port: 41703 }
2022-09-20T12:33:29.062Z cypress:server:appdata path: /home/DABIT-ANALYTICS/sebastian.mueller/.config/Cypress/cy/production/proxy
2022-09-20T12:33:29.063Z cypress:https-proxy:ca checking CA version { actualVersion: 1, CA_VERSION: 1 }
2022-09-20T12:33:29.072Z cypress:webpack-dev-server:webpack projectRoot: /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp, files: /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/src/components/HelloWorld.cy.ts
2022-09-20T12:33:29.075Z cypress:https-proxy Created SNI HTTPS Proxy Server { port: 42699 }
2022-09-20T12:33:29.076Z cypress:network:cors Parsed URL { port: '8081', tld: 'localhost', domain: '' }
2022-09-20T12:33:29.076Z cypress:network:cors Parsed URL { port: '8081', tld: 'localhost', domain: '' }
2022-09-20T12:33:29.076Z cypress:server:remote-states setting remote state { auth: undefined, origin: 'http://localhost:8081', strategy: 'http', fileServer: null, domainName: 'localhost', props: { port: '8081', tld: 'localhost', domain: '' } } for http://localhost:8081
2022-09-20T12:33:29.076Z cypress:network:cors Parsed URL { port: '8081', tld: 'localhost', domain: '' }
2022-09-20T12:33:29.076Z cypress:server:remote-states getting remote state: { auth: undefined, origin: 'http://localhost:8081', strategy: 'http', fileServer: null, domainName: 'localhost', props: { port: '8081', tld: 'localhost', domain: '' } } for: http://localhost:8081
2022-09-20T12:33:29.077Z cypress:server:project project config: { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: 'http://localhost:8081', blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: 41703, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', testingType: 'component', componentTesting: true, remote: {}, browser: null, specs: [], proxyUrl: 'http://localhost:41703', browserUrl: 'http://localhost:8081/__/', reporterUrl: 'http://localhost:8081/__cypress/reporter', xhrUrl: '__cypress/xhrs/', proxyServer: 'http://localhost:41703' }
2022-09-20T12:33:29.077Z cypress:server:reporter trying to load reporter: spec
2022-09-20T12:33:29.077Z cypress:server:reporter spec is Mocha reporter
2022-09-20T12:33:29.079Z cypress:server:saved_state noop saved state
2022-09-20T12:33:29.079Z cypress:server:project project has config { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: 'http://localhost:8081', blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: 41703, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalSessionAndOrigin: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: [Array], from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, nodeVersion: { value: undefined, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'linux', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 250, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/component.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: 'legacy', from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: true, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, viewportHeight: { value: 500, from: 'default' }, viewportWidth: { value: 500, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: '**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' }, testingType: { value: 'component' } }, testingType: 'component', componentTesting: true, remote: {}, browser: null, specs: [], proxyUrl: 'http://localhost:41703', browserUrl: 'http://localhost:8081/__/', reporterUrl: 'http://localhost:8081/__cypress/reporter', xhrUrl: '__cypress/xhrs/', proxyServer: 'http://localhost:41703', state: {} }
2022-09-20T12:33:29.079Z cypress:network:cors Parsed URL { port: '8081', tld: 'localhost', domain: '' }
2022-09-20T12:33:29.079Z cypress:server:remote-states getting remote state: { auth: undefined, origin: 'http://localhost:8081', strategy: 'http', fileServer: null, domainName: 'localhost', props: { port: '8081', tld: 'localhost', domain: '' } } for: http://localhost:8081
2022-09-20T12:33:29.080Z cypress:server:run project created and opened with config { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: 'http://localhost:8081', blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: 41703, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalSessionAndOrigin: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: [Array], from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, nodeVersion: { value: undefined, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'linux', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 250, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/component.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: 'legacy', from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: true, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, viewportHeight: { value: 500, from: 'default' }, viewportWidth: { value: 500, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: '**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' }, testingType: { value: 'component' } }, testingType: 'component', componentTesting: true, remote: { auth: undefined, origin: 'http://localhost:8081', strategy: 'http', fileServer: null, domainName: 'localhost', props: { port: '8081', tld: 'localhost', domain: '' } }, browser: null, specs: [], proxyUrl: 'http://localhost:41703', browserUrl: 'http://localhost:8081/__/', reporterUrl: 'http://localhost:8081/__cypress/reporter', xhrUrl: '__cypress/xhrs/', proxyServer: 'http://localhost:41703', state: {} }
2022-09-20T12:33:29.080Z cypress:server:browsers:utils searching for browser { nameOrPath: 'electron', filter: { name: 'electron', channel: 'stable' }, knownBrowsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ] }
2022-09-20T12:33:29.083Z cypress:server:profilecleaner found 1 profile folders: [ '/home/DABIT-ANALYTICS/sebastian.mueller/.config/Cypress/Partitions/run-10993' ]
2022-09-20T12:33:29.084Z cypress:server:profilecleaner finding process by pid: 10993
2022-09-20T12:33:29.090Z cypress:server:profilecleaner found 0 root level profile matches: []
2022-09-20T12:33:29.090Z cypress:server:profilecleaner found 0 profile folders: []
2022-09-20T12:33:29.103Z cypress:server:profilecleaner removing old profile { pid: 10993, folder: '/home/DABIT-ANALYTICS/sebastian.mueller/.config/Cypress/Partitions/run-10993' }

====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        10.8.0                                                                         │
  │ Browser:        Electron 102 (headless)                                                        │
  │ Node Version:   v16.13.1 (/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node) │
  │ Specs:          1 found (HelloWorld.cy.ts)                                                     │
  │ Searched:       **/*.cy.{js,jsx,ts,tsx}                                                        │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘

2022-09-20T12:33:29.125Z cypress:lifecycle:EventRegistrar plugin event registered? { eventName: 'before:run', isRegistered: false }

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  HelloWorld.cy.ts                                                                (1 of 1)
2022-09-20T12:33:29.127Z cypress:server:run about to run spec { spec: { fileExtension: '.ts', baseName: 'HelloWorld.cy.ts', fileName: 'HelloWorld', specFileExtension: '.cy.ts', relativeToCommonRoot: 'HelloWorld.cy.ts', specType: 'component', name: 'src/components/HelloWorld.cy.ts', relative: 'src/components/HelloWorld.cy.ts', absolute: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/src/components/HelloWorld.cy.ts' }, isHeadless: true, browser: { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102, isHeadless: true, isHeaded: false } }
2022-09-20T12:33:29.127Z cypress:server:run created videoRecording { videoRecording: { api: { onError: [Function (anonymous)], videoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4', compressedVideoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts-compressed.mp4', useFfmpegVideoController: [AsyncFunction: useFfmpegVideoController], useVideoController: [Function: useVideoController], onProjectCaptureVideoFrames: [Function: onProjectCaptureVideoFrames] }, controller: undefined } }
2022-09-20T12:33:29.127Z cypress:server:run waiting for socket to connect and browser to launch...
2022-09-20T12:33:29.127Z cypress:server:run waiting for socket connection... { id: 'mti55a9ua3' }
2022-09-20T12:33:29.128Z cypress:server:open_project resetting project state, preparing to launch browser electron for spec { fileExtension: '.ts', baseName: 'HelloWorld.cy.ts', fileName: 'HelloWorld', specFileExtension: '.cy.ts', relativeToCommonRoot: 'HelloWorld.cy.ts', specType: 'component', name: 'src/components/HelloWorld.cy.ts', relative: 'src/components/HelloWorld.cy.ts', absolute: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/src/components/HelloWorld.cy.ts' } options { projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', shouldLaunchNewTab: false, onError: [Function (anonymous)], videoApi: { onError: [Function (anonymous)], videoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4', compressedVideoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts-compressed.mp4', useFfmpegVideoController: [AsyncFunction: useFfmpegVideoController], useVideoController: [Function: useVideoController], onProjectCaptureVideoFrames: [Function: onProjectCaptureVideoFrames] }, automationMiddleware: { onBeforeRequest: [Function: onBeforeRequest], onAfterResponse: [Function: onAfterResponse] }, onWarning: [Function: onWarning] }
2022-09-20T12:33:29.128Z cypress:server:project resetting project instance /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp
2022-09-20T12:33:29.128Z cypress:proxy:http:util:buffers resetting buffers
2022-09-20T12:33:29.128Z cypress:network:cors Parsed URL { port: '80', tld: '', domain: '' }
2022-09-20T12:33:29.128Z cypress:network:cors Parsed URL { port: '41703', tld: 'localhost', domain: '' }
2022-09-20T12:33:29.128Z cypress:server:remote-states setting remote state { auth: undefined, origin: 'http://localhost:41703', strategy: 'file', fileServer: 'http://localhost', domainName: 'localhost', props: null } for http://localhost:41703
2022-09-20T12:33:29.128Z cypress:network:cors Parsed URL { port: '41703', tld: 'localhost', domain: '' }
2022-09-20T12:33:29.128Z cypress:server:remote-states getting remote state: { auth: undefined, origin: 'http://localhost:41703', strategy: 'file', fileServer: 'http://localhost', domainName: 'localhost', props: null } for: http://localhost:41703
2022-09-20T12:33:29.129Z cypress:server:project_utils returning spec url http://localhost:8081/__/#/specs/runner?file=src/components/HelloWorld.cy.ts
2022-09-20T12:33:29.129Z cypress:server:open_project open project url http://localhost:8081/__/#/specs/runner?file=src/components/HelloWorld.cy.ts
2022-09-20T12:33:29.129Z cypress:server:project project has config { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: 'http://localhost:8081', blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: 41703, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalSessionAndOrigin: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: [Array], from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, nodeVersion: { value: undefined, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'linux', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 250, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/component.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: 'legacy', from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: true, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, viewportHeight: { value: 500, from: 'default' }, viewportWidth: { value: 500, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: '**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' }, testingType: { value: 'component' } }, testingType: 'component', componentTesting: true, remote: {}, browser: null, specs: [], proxyUrl: 'http://localhost:41703', browserUrl: 'http://localhost:8081/__/', reporterUrl: 'http://localhost:8081/__cypress/reporter', xhrUrl: '__cypress/xhrs/', proxyServer: 'http://localhost:41703', state: {} }
2022-09-20T12:33:29.129Z cypress:network:cors Parsed URL { port: '41703', tld: 'localhost', domain: '' }
2022-09-20T12:33:29.129Z cypress:server:remote-states getting remote state: { auth: undefined, origin: 'http://localhost:41703', strategy: 'file', fileServer: 'http://localhost', domainName: 'localhost', props: null } for: http://localhost:41703
2022-09-20T12:33:29.129Z cypress:server:open_project launching browser: { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102, isHeadless: true, isHeaded: false }, spec: src/components/HelloWorld.cy.ts
2022-09-20T12:33:29.129Z cypress:server:browsers browsers.kill called with no active instance
2022-09-20T12:33:29.130Z cypress:server:browsers getBrowserLauncher { browser: { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102, isHeadless: true, isHeaded: false } }
2022-09-20T12:33:29.131Z cypress:server:browsers opening browser { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102, isHeadless: true, isHeaded: false }
2022-09-20T12:33:29.131Z cypress:server:browsers:electron open { browser: { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102, isHeadless: true, isHeaded: false }, url: 'http://localhost:8081/__/#/specs/runner?file=src/components/HelloWorld.cy.ts' }
2022-09-20T12:33:29.131Z cypress:server:saved_state noop saved state
2022-09-20T12:33:29.131Z cypress:server:browsers:electron received saved state {}
2022-09-20T12:33:29.132Z cypress:server:browsers:electron browser window options { browser: { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102, isHeadless: true, isHeaded: false }, url: 'http://localhost:8081/__/#/specs/runner?file=src/components/HelloWorld.cy.ts', browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], userAgent: null, proxyUrl: 'http://localhost:41703', proxyServer: 'http://localhost:41703', socketIoRoute: '/__socket', chromeWebSecurity: true, isTextTerminal: true, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', experimentalModifyObstructiveThirdPartyCode: false, experimentalSessionAndOrigin: false, experimentalWebKitSupport: false, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', shouldLaunchNewTab: false, videoApi: { onError: [Function (anonymous)], videoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4', compressedVideoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts-compressed.mp4', useFfmpegVideoController: [AsyncFunction: useFfmpegVideoController], useVideoController: [Function: useVideoController], onProjectCaptureVideoFrames: [Function: onProjectCaptureVideoFrames] }, automationMiddleware: { onBeforeRequest: [Function: onBeforeRequest], onAfterResponse: [Function: onAfterResponse] }, x: null, y: null, width: 1280, height: 720, minWidth: 100, minHeight: 100, devTools: false, contextMenu: true, partition: 'persist:run-12061', trackState: { width: 'browserWidth', height: 'browserHeight', x: 'browserX', y: 'browserY', devTools: 'isBrowserDevToolsOpen' }, webPreferences: { sandbox: true, partition: null, webSecurity: true, nodeIntegration: false, backgroundThrottling: false }, show: false, resizable: false, frame: true, recordFrameRate: null }
2022-09-20T12:33:29.132Z cypress:lifecycle:EventRegistrar plugin event registered? { eventName: 'before:browser:launch', isRegistered: false }
2022-09-20T12:33:29.132Z cypress:server:browsers:electron launching browser window to url: http://localhost:8081/__/#/specs/runner?file=src/components/HelloWorld.cy.ts
2022-09-20T12:33:29.148Z cypress:server:browsers:electron debugger attached
2022-09-20T12:33:29.148Z cypress:server:browsers:electron clearing cache
2022-09-20T12:33:29.202Z cypress:server:video capture started { command: "ffmpeg -n 20 /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/node_modules/@ffmpeg-installer/linux-x64/ffmpeg -f image2pipe -use_wallclock_as_timestamps 1 -i pipe:0 -y -vcodec libx264 -filter:v crop='floor(in_w/2)*2:floor(in_h/2)*2' -preset ultrafast /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4" }
2022-09-20T12:33:29.202Z cypress:server:run setting videoController for videoRecording { api: { onError: [Function (anonymous)], videoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4', compressedVideoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts-compressed.mp4', useFfmpegVideoController: [AsyncFunction: useFfmpegVideoController], useVideoController: [Function: useVideoController], onProjectCaptureVideoFrames: [Function: onProjectCaptureVideoFrames] }, controller: undefined }
2022-09-20T12:33:29.203Z cypress:server:browsers:electron debugger: enable Console and Network
4 assets
37 modules

�[1m�[31mERROR�[39m�[22m in �[1m./cypress/support/component.ts�[39m�[22m �[1m�[32m5:8�[39m�[22m
�[1mModule parse �[1m�[31mfailed�[39m�[22m�[1m: �[1m�[31mUnexpected�[39m�[22m�[1m token (5:8)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| import { mount } from 'cypress/vue'
| 
> declare global {
|   namespace Cypress {
|     interface Chainable {�[39m�[22m

�[1m�[31mERROR�[39m�[22m in �[1m./src/components/HelloWorld.vue�[39m�[22m �[1m�[32m1:0�[39m�[22m
�[1mModule parse �[1m�[31mfailed�[39m�[22m�[1m: �[1m�[31mUnexpected�[39m�[22m�[1m token (1:0)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> <template>
|   <div class="hello">
|     <h1>Test</h1>�[39m�[22m

webpack 5.74.0 compiled with �[1m�[31m2 errors�[39m�[22m in 343 ms
2022-09-20T12:33:29.373Z cypress:server:project project has config { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: 'http://localhost:8081', blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: 41703, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalSessionAndOrigin: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: [Array], from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, nodeVersion: { value: undefined, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'linux', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 250, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/component.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: 'legacy', from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: true, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, viewportHeight: { value: 500, from: 'default' }, viewportWidth: { value: 500, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: '**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' }, testingType: { value: 'component' } }, testingType: 'component', componentTesting: true, remote: {}, browser: null, specs: [], proxyUrl: 'http://localhost:41703', browserUrl: 'http://localhost:8081/__/', reporterUrl: 'http://localhost:8081/__cypress/reporter', xhrUrl: '__cypress/xhrs/', proxyServer: 'http://localhost:41703', state: {} }
2022-09-20T12:33:29.373Z cypress:network:cors Parsed URL { port: '41703', tld: 'localhost', domain: '' }
2022-09-20T12:33:29.373Z cypress:server:remote-states getting remote state: { auth: undefined, origin: 'http://localhost:41703', strategy: 'file', fileServer: 'http://localhost', domainName: 'localhost', props: null } for: http://localhost:41703
2022-09-20T12:33:29.388Z cypress:server:routes proxying static assets /__/assets/polyfills.dabe60b8.js, params[0] polyfills.dabe60b8.js
2022-09-20T12:33:29.390Z cypress:server:routes proxying static assets /__/assets/index.48ac5e8f.js, params[0] index.48ac5e8f.js
2022-09-20T12:33:29.391Z cypress:server:routes proxying static assets /__/assets/index.42ea0b38.css, params[0] index.42ea0b38.css
2022-09-20T12:33:29.637Z cypress:server:server-base Got CONNECT request from localhost:8081
2022-09-20T12:33:29.638Z cypress:https-proxy Writing browserSocket connection headers { url: 'localhost:8081', headLength: 0, headers: { host: 'localhost:8081', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/10.8.0 Chrome/102.0.5005.148 Electron/19.0.8 Safari/537.36' } }
2022-09-20T12:33:29.638Z cypress:https-proxy Got first head bytes { url: 'localhost:8081', head: 'GET /__socket/?EIO=4&transport=websocket HTTP/1.1\r\nHost: localho' }
2022-09-20T12:33:29.639Z cypress:https-proxy Making intercepted connection to 41703
2022-09-20T12:33:29.643Z cypress:network:connect successfully connected { opts: { port: 41703, host: 'localhost', getDelayMsForRetry: [Function: getDelayForRetry] }, iteration: 0 }
2022-09-20T12:33:29.643Z cypress:https-proxy received upstreamSocket callback for request { port: 41703, hostname: 'localhost', err: undefined }
2022-09-20T12:33:29.643Z cypress:server:util:socket_allowed allowing socket { localPort: 51172 }
2022-09-20T12:33:29.643Z cypress:server:server-base Got UPGRADE request from /__socket/?EIO=4&transport=websocket
2022-09-20T12:33:29.643Z cypress:server:util:socket_allowed is incoming request allowed? { isAllowed: true, reqUrl: '/__socket/?EIO=4&transport=websocket', remotePort: 51172, remoteAddress: '127.0.0.1' }
2022-09-20T12:33:29.651Z cypress:server:socket-base socket connected
2022-09-20T12:33:29.651Z cypress:server:socket-ct do onSocketConnection
2022-09-20T12:33:29.660Z cypress:server:routes proxying static assets /__/assets/Specs.3d3753c5.js, params[0] Specs.3d3753c5.js
2022-09-20T12:33:29.661Z cypress:server:routes proxying static assets /__/assets/Runner.b0feaeb0.js, params[0] Runner.b0feaeb0.js
2022-09-20T12:33:29.663Z cypress:server:routes proxying static assets /__/assets/Runner.d2b9b65e.css, params[0] Runner.d2b9b65e.css
2022-09-20T12:33:29.663Z cypress:server:routes proxying static assets /__/assets/CreateSpecModal.7e14d3c4.js, params[0] CreateSpecModal.7e14d3c4.js
2022-09-20T12:33:29.664Z cypress:server:routes proxying static assets /__/assets/CreateSpecModal.315eb5ce.css, params[0] CreateSpecModal.315eb5ce.css
2022-09-20T12:33:29.665Z cypress:server:routes proxying static assets /__/assets/SpecPatterns.fcb105c9.js, params[0] SpecPatterns.fcb105c9.js
2022-09-20T12:33:29.672Z cypress:server:routes proxying static assets /__/assets/Switch.95fc3192.js, params[0] Switch.95fc3192.js
2022-09-20T12:33:29.676Z cypress:server:routes proxying static assets /__/assets/refresh_x16.b4415afb.js, params[0] refresh_x16.b4415afb.js
2022-09-20T12:33:29.735Z cypress:server:server-base Got CONNECT request from localhost:8081
2022-09-20T12:33:29.736Z cypress:https-proxy Writing browserSocket connection headers { url: 'localhost:8081', headLength: 0, headers: { host: 'localhost:8081', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/10.8.0 Chrome/102.0.5005.148 Electron/19.0.8 Safari/537.36' } }
2022-09-20T12:33:29.736Z cypress:https-proxy Got first head bytes { url: 'localhost:8081', head: 'GET /__socket-graphql HTTP/1.1\r\nHost: localhost:8081\r\nConnection' }
2022-09-20T12:33:29.736Z cypress:https-proxy Making intercepted connection to 41703
2022-09-20T12:33:29.737Z cypress:network:connect successfully connected { opts: { port: 41703, host: 'localhost', getDelayMsForRetry: [Function: getDelayForRetry] }, iteration: 0 }
2022-09-20T12:33:29.737Z cypress:https-proxy received upstreamSocket callback for request { port: 41703, hostname: 'localhost', err: undefined }
2022-09-20T12:33:29.737Z cypress:server:util:socket_allowed allowing socket { localPort: 51182 }
2022-09-20T12:33:29.737Z cypress:server:server-base Got UPGRADE request from /__socket-graphql
2022-09-20T12:33:29.737Z cypress:server:util:socket_allowed is incoming request allowed? { isAllowed: true, reqUrl: '/__socket-graphql', remotePort: 51182, remoteAddress: '127.0.0.1' }
2022-09-20T12:33:29.765Z cypress:server:project project has config { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: { devServer: [Object] }, devServer: { framework: 'vue-cli', bundler: 'webpack' }, envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: 'http://localhost:8081', blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: 41703, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', version: '96.0.4664.110', path: 'chromium-browser', minSupportedVersion: 64, majorVersion: '96' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '91.4.0esr', path: 'firefox', minSupportedVersion: 86, majorVersion: '91', warning: 'Your project has set the configuration option: `chromeWebSecurity` to `false`.\n' + '\n' + 'This option will not have an effect in Firefox. Tests that rely on web security being disabled will not run as expected.' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '102.0.5005.148', path: '', majorVersion: 102 } ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalSessionAndOrigin: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: [Array], from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, nodeVersion: { value: undefined, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'linux', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 250, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/component.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: 'legacy', from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: true, from: 'default' }, videoCompression: { value: 32, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, videoUploadOnPasses: { value: true, from: 'default' }, viewportHeight: { value: 500, from: 'default' }, viewportWidth: { value: 500, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: '**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' }, testingType: { value: 'component' } }, testingType: 'component', componentTesting: true, remote: {}, browser: null, specs: [], proxyUrl: 'http://localhost:41703', browserUrl: 'http://localhost:8081/__/', reporterUrl: 'http://localhost:8081/__cypress/reporter', xhrUrl: '__cypress/xhrs/', proxyServer: 'http://localhost:41703', state: {} }
2022-09-20T12:33:29.765Z cypress:network:cors Parsed URL { port: '41703', tld: 'localhost', domain: '' }
2022-09-20T12:33:29.765Z cypress:server:remote-states getting remote state: { auth: undefined, origin: 'http://localhost:41703', strategy: 'file', fileServer: 'http://localhost', domainName: 'localhost', props: null } for: http://localhost:41703
2022-09-20T12:33:30.192Z cypress:server:routes proxying static assets /__/assets/electron.fb07f5cc.svg, params[0] electron.fb07f5cc.svg
2022-09-20T12:33:30.401Z cypress:server:project socket:connected
2022-09-20T12:33:30.401Z cypress:server:run got socket connection { id: 'mti55a9ua3' }
2022-09-20T12:33:30.401Z cypress:server:run socket connected { socketId: 'mti55a9ua3' }
2022-09-20T12:33:30.401Z cypress:lifecycle:EventRegistrar plugin event registered? { eventName: 'before:spec', isRegistered: false }
2022-09-20T12:33:30.415Z cypress:server:routes-ct proxying to /__cypress/src, originalUrl /__cypress/src/main.js
[12061:0920/143330.436738:INFO:CONSOLE(551)] "[webpack-dev-server] Server started: Hot Module Replacement disabled, Live Reloading enabled, Progress disabled, Overlay enabled.", source: webpack://todoapp/./node_modules/webpack-dev-server/client/modules/logger/index.js? (551)
2022-09-20T12:33:30.436Z cypress:server:browsers:electron console message: { column: 22, level: 'info', line: 551, source: 'console-api', text: '[webpack-dev-server] Server started: Hot Module Replacement disabled, Live Reloading enabled, Progress disabled, Overlay enabled.', url: 'webpack://todoapp/./node_modules/webpack-dev-server/client/modules/logger/index.js?' }
2022-09-20T12:33:30.437Z cypress:server:server-base Got CONNECT request from 127.0.0.1:8081
2022-09-20T12:33:30.437Z cypress:https-proxy Writing browserSocket connection headers { url: '127.0.0.1:8081', headLength: 0, headers: { host: '127.0.0.1:8081', 'proxy-connection': 'keep-alive', 'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/10.8.0 Chrome/102.0.5005.148 Electron/19.0.8 Safari/537.36' } }
2022-09-20T12:33:30.438Z cypress:https-proxy Got first head bytes { url: '127.0.0.1:8081', head: 'GET /ws HTTP/1.1\r\nHost: 127.0.0.1:8081\r\nConnection: Upgrade\r\nPra' }
2022-09-20T12:33:30.438Z cypress:https-proxy Making intercepted connection to 41703
2022-09-20T12:33:30.438Z cypress:network:connect successfully connected { opts: { port: 41703, host: 'localhost', getDelayMsForRetry: [Function: getDelayForRetry] }, iteration: 0 }
2022-09-20T12:33:30.438Z cypress:https-proxy received upstreamSocket callback for request { port: 41703, hostname: 'localhost', err: undefined }
2022-09-20T12:33:30.438Z cypress:server:util:socket_allowed allowing socket { localPort: 51190 }
2022-09-20T12:33:30.438Z cypress:server:server-base Got UPGRADE request from /ws
2022-09-20T12:33:30.439Z cypress:network:cors Parsed URL { port: '8081', tld: '127.0.0.1', domain: '' }
2022-09-20T12:33:30.439Z cypress:network:agent addRequest called { isHttps: false, href: 'http://127.0.0.1:8081/ws' }
2022-09-20T12:33:30.439Z cypress:network:agent got family { family: 4, href: 'http://127.0.0.1:8081/ws' }
2022-09-20T12:33:30.455Z cypress:server:routes-ct proxying to /__cypress/src, originalUrl /__cypress/src/cypress_support_component_ts.js
[12061:0920/143330.456773:INFO:CONSOLE(561)] "[webpack-dev-server] Errors while compiling. Reload prevented.", source: webpack://todoapp/./node_modules/webpack-dev-server/client/modules/logger/index.js? (561)
2022-09-20T12:33:30.456Z cypress:server:browsers:electron console message: { column: 23, level: 'error', line: 561, source: 'console-api', text: '[webpack-dev-server] Errors while compiling. Reload prevented.', url: 'webpack://todoapp/./node_modules/webpack-dev-server/client/modules/logger/index.js?' }
[12061:0920/143330.457084:INFO:CONSOLE(561)] "[webpack-dev-server] ERROR in ./cypress/support/component.ts 5:8
Module parse failed: Unexpected token (5:8)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| import { mount } from 'cypress/vue'
| 
> declare global {
|   namespace Cypress {
|     interface Chainable {", source: webpack://todoapp/./node_modules/webpack-dev-server/client/modules/logger/index.js? (561)
2022-09-20T12:33:30.457Z cypress:server:browsers:electron console message: { column: 23, level: 'error', line: 561, source: 'console-api', text: '[webpack-dev-server] ERROR in ./cypress/support/component.ts 5:8\n' + 'Module parse failed: Unexpected token (5:8)\n' + 'You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders\n' + "| import { mount } from 'cypress/vue'\n" + '| \n' + '> declare global {\n' + '|   namespace Cypress {\n' + '|     interface Chainable {', url: 'webpack://todoapp/./node_modules/webpack-dev-server/client/modules/logger/index.js?' }
[12061:0920/143330.457576:INFO:CONSOLE(561)] "[webpack-dev-server] ERROR in ./src/components/HelloWorld.vue 1:0
Module parse failed: Unexpected token (1:0)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> <template>
|   <div class="hello">
|     <h1>Test</h1>", source: webpack://todoapp/./node_modules/webpack-dev-server/client/modules/logger/index.js? (561)
2022-09-20T12:33:30.457Z cypress:server:browsers:electron console message: { column: 23, level: 'error', line: 561, source: 'console-api', text: '[webpack-dev-server] ERROR in ./src/components/HelloWorld.vue 1:0\n' + 'Module parse failed: Unexpected token (1:0)\n' + 'You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders\n' + '> <template>\n' + '|   <div class="hello">\n' + '|     <h1>Test</h1>', url: 'webpack://todoapp/./node_modules/webpack-dev-server/client/modules/logger/index.js?' }
2022-09-20T12:33:30.478Z cypress:server:project received runnables { id: 'r1', title: '', root: true, type: 'suite', file: 'src/components/HelloWorld.cy.ts', retries: -1, _slow: 250, hooks: [], tests: [ { id: 'r2', title: 'An uncaught error was detected outside of a test', body: '() => {\n        throw err;\n      }', type: 'test', invocationDetails: [Object], currentRetry: 0, retries: -1, _slow: 250, hooks: [Array], _testConfig: [Object], _titlePath: [Array] } ], suites: [], runtimeConfig: {} }
2022-09-20T12:33:30.479Z cypress:server:reporter trying to load reporter: spec
2022-09-20T12:33:30.479Z cypress:server:reporter spec is Mocha reporter
2022-09-20T12:33:30.481Z cypress:server:browsers browser opened
2022-09-20T12:33:30.519Z cypress:server:project onMocha start

2022-09-20T12:33:30.520Z cypress:server:reporter got mocha event 'start' with args: [ { start: '2022-09-20T12:33:30.513Z' } ]
2022-09-20T12:33:30.520Z cypress:server:project onMocha suite
2022-09-20T12:33:30.520Z cypress:server:reporter got mocha event 'suite' with args: [ { id: 'r1', title: '', root: true, type: 'suite', file: 'src/components/HelloWorld.cy.ts', retries: -1, _slow: 250 } ]

2022-09-20T12:33:30.561Z cypress:server:project onMocha test
2022-09-20T12:33:30.561Z cypress:server:reporter got mocha event 'test' with args: [ { _testConfig: { testConfigList: [], unverifiedTestConfig: {} }, id: 'r2', order: 1, title: 'An uncaught error was detected outside of a test', body: '() => {\n        throw err;\n      }', type: 'test', invocationDetails: { function: 'Object.getInvocationDetails', fileUrl: 'http://localhost:8081/__cypress/runner/cypress_runner.js', originalFile: 'http://localhost:8081/__cypress/runner/cypress_runner.js', line: 166290, column: 17, whitespace: '    ', stack: 'Error\n' + '    at Object.getInvocationDetails (http://localhost:8081/__cypress/runner/cypress_runner.js:166290:17)\n' + '    at Suite.addTest (http://localhost:8081/__cypress/runner/cypress_runner.js:162405:93)\n' + '    at Object.createRootTest (http://localhost:8081/__cypress/runner/cypress_runner.js:162566:21)\n' + '    at Object.normalizeAll (http://localhost:8081/__cypress/runner/cypress_runner.js:164466:17)\n' + '    at Socket.<anonymous> (http://localhost:8081/__/assets/index.48ac5e8f.js:106144:46)\n' + '    at Socket.onack (http://localhost:8081/__/assets/index.48ac5e8f.js:13487:11)\n' + '    at Socket.onpacket (http://localhost:8081/__/assets/index.48ac5e8f.js:13431:14)\n' + '    at Emitter2.emit (http://localhost:8081/__/assets/index.48ac5e8f.js:11611:23)\n' + '    at Manager.emitReserved (http://localhost:8081/__/assets/index.48ac5e8f.js:13280:11)\n' + '    at Manager.ondecoded (http://localhost:8081/__/assets/index.48ac5e8f.js:13757:10)' }, currentRetry: 0, retries: -1, _slow: 250 } ]
2022-09-20T12:33:30.562Z cypress:server:project onMocha test:before:run
2022-09-20T12:33:30.562Z cypress:server:reporter got mocha event 'test:before:run' with args: [ { _testConfig: { testConfigList: [], unverifiedTestConfig: {}, applied: 'complete' }, id: 'r2', order: 1, title: 'An uncaught error was detected outside of a test', body: '() => {\n        throw err;\n      }', type: 'test', wallClockStartedAt: '2022-09-20T12:33:30.553Z', invocationDetails: { function: 'Object.getInvocationDetails', fileUrl: 'http://localhost:8081/__cypress/runner/cypress_runner.js', originalFile: 'http://localhost:8081/__cypress/runner/cypress_runner.js', line: 166290, column: 17, whitespace: '    ', stack: 'Error\n' + '    at Object.getInvocationDetails (http://localhost:8081/__cypress/runner/cypress_runner.js:166290:17)\n' + '    at Suite.addTest (http://localhost:8081/__cypress/runner/cypress_runner.js:162405:93)\n' + '    at Object.createRootTest (http://localhost:8081/__cypress/runner/cypress_runner.js:162566:21)\n' + '    at Object.normalizeAll (http://localhost:8081/__cypress/runner/cypress_runner.js:164466:17)\n' + '    at Socket.<anonymous> (http://localhost:8081/__/assets/index.48ac5e8f.js:106144:46)\n' + '    at Socket.onack (http://localhost:8081/__/assets/index.48ac5e8f.js:13487:11)\n' + '    at Socket.onpacket (http://localhost:8081/__/assets/index.48ac5e8f.js:13431:14)\n' + '    at Emitter2.emit (http://localhost:8081/__/assets/index.48ac5e8f.js:11611:23)\n' + '    at Manager.emitReserved (http://localhost:8081/__/assets/index.48ac5e8f.js:13280:11)\n' + '    at Manager.ondecoded (http://localhost:8081/__/assets/index.48ac5e8f.js:13757:10)' }, currentRetry: 0, retries: 0, _slow: 250 } ]
2022-09-20T12:33:30.562Z cypress:server:socket-base automation:request get:cookies { domain: 'localhost' }
2022-09-20T12:33:30.562Z cypress:server:socket-base backend:request { eventName: 'reset:server:state', args: [] }
2022-09-20T12:33:30.562Z cypress:proxy:http:util:buffers resetting buffers
2022-09-20T12:33:30.562Z cypress:server:remote-states resetting remote state
2022-09-20T12:33:30.562Z cypress:server:automation:cookies getting:cookies { domain: 'localhost' }
2022-09-20T12:33:30.563Z cypress:server:automation:cookies received get:cookies []
2022-09-20T12:33:30.568Z cypress:server:socket-base automation:request take:screenshot { titles: [ 'An uncaught error was detected outside of a test' ], testId: 'r2', testAttemptIndex: 0, simple: true, testFailure: true, capture: 'runner', clip: { x: 0, y: 0, width: 500, height: 500 }, viewport: { width: 1280, height: 720 }, scaled: true, blackout: [], overwrite: false, startTime: '2022-09-20T12:33:30.566Z' }
2022-09-20T12:33:30.568Z cypress:server:screenshot (s2) capturing screenshot { titles: [ 'An uncaught error was detected outside of a test' ], testId: 'r2', testAttemptIndex: 0, simple: true, testFailure: true, capture: 'runner', clip: { x: 0, y: 0, width: 500, height: 500 }, viewport: { width: 1280, height: 720 }, scaled: true, blackout: [], overwrite: false, startTime: '2022-09-20T12:33:30.566Z', specName: 'HelloWorld.cy.ts' }
2022-09-20T12:33:30.670Z cypress:server:screenshot (s2) ensureSafePath { withoutExt: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots/HelloWorld.cy.ts/An uncaught error was detected outside of a test (failed)', extension: 'png', num: 0, maxSafeBytes: 254, maxSafePrefixBytes: 250 }
2022-09-20T12:33:30.673Z cypress:server:screenshot (s2) save /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots/HelloWorld.cy.ts/An uncaught error was detected outside of a test (failed).png
2022-09-20T12:33:30.674Z cypress:lifecycle:EventRegistrar plugin event registered? { eventName: 'after:screenshot', isRegistered: false }
2022-09-20T12:33:30.678Z cypress:server:project onMocha fail
2022-09-20T12:33:30.678Z cypress:server:reporter got mocha event 'fail' with args: [ { _testConfig: { testConfigList: [], unverifiedTestConfig: {}, applied: 'complete' }, id: 'r2', order: 1, title: 'An uncaught error was detected outside of a test', err: { message: 'The following error originated from your test code, not from Cypress.\n' + '\n' + '  > Module parse failed: Unexpected token (5:8)\n' + 'You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders\n' + "| import { mount } from 'cypress/vue'\n" + '| \n' + '> declare global {\n' + '|   namespace Cypress {\n' + '|     interface Chainable {\n' + '\n' + 'When Cypress detects uncaught errors originating from your test code it will automatically fail the current test.\n' + '\n' + 'Cypress could not associate this error to any specific test.\n' + '\n' + 'We dynamically generated a new test to display this failure.', name: 'Error', stack: 'Error: The following error originated from your test code, not from Cypress.\n' + '\n' + '  > Module parse failed: Unexpected token (5:8)\n' + 'You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders\n' + "| import { mount } from 'cypress/vue'\n" + '| \n' + '> declare global {\n' + '|   namespace Cypress {\n' + '|     interface Chainable {\n' + '\n' + 'When Cypress detects uncaught errors originating from your test code it will automatically fail the current test.\n' + '\n' + 'Cypress could not associate this error to any specific test.\n' + '\n' + 'We dynamically generated a new test to display this failure.\n' + '    at eval (webpack://todoapp/./cypress/support/component.ts?:1:7)\n' + '    at ./cypress/support/component.ts (http://localhost:8081/__cypress/src/cypress_support_component_ts.js:17:1)\n' + '    at __webpack_require__ (http://localhost:8081/__cypress/src/main.js:281:42)\n' + '    at __webpack_require__.t (http://localhost:8081/__cypress/src/main.js:314:38)', parsedStack: [Array] }, state: 'failed', body: '() => {\n        throw err;\n      }', type: 'test', duration: 123, wallClockStartedAt: '2022-09-20T12:33:30.553Z', timings: { lifecycle: 10, test: [Object] }, invocationDetails: { function: 'Object.getInvocationDetails', fileUrl: 'http://localhost:8081/__cypress/runner/cypress_runner.js', originalFile: 'http://localhost:8081/__cypress/runner/cypress_runner.js', line: 166290, column: 17, whitespace: '    ', stack: 'Error\n' + '    at Object.getInvocationDetails (http://localhost:8081/__cypress/runner/cypress_runner.js:166290:17)\n' + '    at Suite.addTest (http://localhost:8081/__cypress/runner/cypress_runner.js:162405:93)\n' + '    at Object.createRootTest (http://localhost:8081/__cypress/runner/cypress_runner.js:162566:21)\n' + '    at Object.normalizeAll (http://localhost:8081/__cypress/runner/cypress_runner.js:164466:17)\n' + '    at Socket.<anonymous> (http://localhost:8081/__/assets/index.48ac5e8f.js:106144:46)\n' + '    at Socket.onack (http://localhost:8081/__/assets/index.48ac5e8f.js:13487:11)\n' + '    at Socket.onpacket (http://localhost:8081/__/assets/index.48ac5e8f.js:13431:14)\n' + '    at Emitter2.emit (http://localhost:8081/__/assets/index.48ac5e8f.js:11611:23)\n' + '    at Manager.emitReserved (http://localhost:8081/__/assets/index.48ac5e8f.js:13280:11)\n' + '    at Manager.ondecoded (http://localhost:8081/__/assets/index.48ac5e8f.js:13757:10)' }, currentRetry: 0, retries: 0, _slow: 250 } ]
  1) An uncaught error was detected outside of a test
2022-09-20T12:33:30.680Z cypress:server:project onMocha test end
2022-09-20T12:33:30.680Z cypress:server:reporter got mocha event 'test end' with args: [ { _testConfig: { testConfigList: [], unverifiedTestConfig: {}, applied: 'complete' }, id: 'r2', order: 1, title: 'An uncaught error was detected outside of a test', err: { message: 'The following error originated from your test code, not from Cypress.\n' + '\n' + '  > Module parse failed: Unexpected token (5:8)\n' + 'You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders\n' + "| import { mount } from 'cypress/vue'\n" + '| \n' + '> declare global {\n' + '|   namespace Cypress {\n' + '|     interface Chainable {\n' + '\n' + 'When Cypress detects uncaught errors originating from your test code it will automatically fail the current test.\n' + '\n' + 'Cypress could not associate this error to any specific test.\n' + '\n' + 'We dynamically generated a new test to display this failure.', name: 'Error', stack: 'Error: The following error originated from your test code, not from Cypress.\n' + '\n' + '  > Module parse failed: Unexpected token (5:8)\n' + 'You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders\n' + "| import { mount } from 'cypress/vue'\n" + '| \n' + '> declare global {\n' + '|   namespace Cypress {\n' + '|     interface Chainable {\n' + '\n' + 'When Cypress detects uncaught errors originating from your test code it will automatically fail the current test.\n' + '\n' + 'Cypress could not associate this error to any specific test.\n' + '\n' + 'We dynamically generated a new test to display this failure.\n' + '    at eval (webpack://todoapp/./cypress/support/component.ts?:1:7)\n' + '    at ./cypress/support/component.ts (http://localhost:8081/__cypress/src/cypress_support_component_ts.js:17:1)\n' + '    at __webpack_require__ (http://localhost:8081/__cypress/src/main.js:281:42)\n' + '    at __webpack_require__.t (http://localhost:8081/__cypress/src/main.js:314:38)', parsedStack: [Array] }, state: 'failed', body: '() => {\n        throw err;\n      }', type: 'test', duration: 123, wallClockStartedAt: '2022-09-20T12:33:30.553Z', timings: { lifecycle: 10, test: [Object] }, invocationDetails: { function: 'Object.getInvocationDetails', fileUrl: 'http://localhost:8081/__cypress/runner/cypress_runner.js', originalFile: 'http://localhost:8081/__cypress/runner/cypress_runner.js', line: 166290, column: 17, whitespace: '    ', stack: 'Error\n' + '    at Object.getInvocationDetails (http://localhost:8081/__cypress/runner/cypress_runner.js:166290:17)\n' + '    at Suite.addTest (http://localhost:8081/__cypress/runner/cypress_runner.js:162405:93)\n' + '    at Object.createRootTest (http://localhost:8081/__cypress/runner/cypress_runner.js:162566:21)\n' + '    at Object.normalizeAll (http://localhost:8081/__cypress/runner/cypress_runner.js:164466:17)\n' + '    at Socket.<anonymous> (http://localhost:8081/__/assets/index.48ac5e8f.js:106144:46)\n' + '    at Socket.onack (http://localhost:8081/__/assets/index.48ac5e8f.js:13487:11)\n' + '    at Socket.onpacket (http://localhost:8081/__/assets/index.48ac5e8f.js:13431:14)\n' + '    at Emitter2.emit (http://localhost:8081/__/assets/index.48ac5e8f.js:11611:23)\n' + '    at Manager.emitReserved (http://localhost:8081/__/assets/index.48ac5e8f.js:13280:11)\n' + '    at Manager.ondecoded (http://localhost:8081/__/assets/index.48ac5e8f.js:13757:10)' }, final: true, currentRetry: 0, retries: 0, _slow: 250 } ]
2022-09-20T12:33:30.687Z cypress:server:project onMocha test:after:run
2022-09-20T12:33:30.687Z cypress:server:reporter got mocha event 'test:after:run' with args: [ { _testConfig: { testConfigList: [], unverifiedTestConfig: {}, applied: 'complete' }, id: 'r2', order: 1, title: 'An uncaught error was detected outside of a test', err: { message: 'The following error originated from your test code, not from Cypress.\n' + '\n' + '  > Module parse failed: Unexpected token (5:8)\n' + 'You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders\n' + "| import { mount } from 'cypress/vue'\n" + '| \n' + '> declare global {\n' + '|   namespace Cypress {\n' + '|     interface Chainable {\n' + '\n' + 'When Cypress detects uncaught errors originating from your test code it will automatically fail the current test.\n' + '\n' + 'Cypress could not associate this error to any specific test.\n' + '\n' + 'We dynamically generated a new test to display this failure.', name: 'Error', stack: 'Error: The following error originated from your test code, not from Cypress.\n' + '\n' + '  > Module parse failed: Unexpected token (5:8)\n' + 'You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders\n' + "| import { mount } from 'cypress/vue'\n" + '| \n' + '> declare global {\n' + '|   namespace Cypress {\n' + '|     interface Chainable {\n' + '\n' + 'When Cypress detects uncaught errors originating from your test code it will automatically fail the current test.\n' + '\n' + 'Cypress could not associate this error to any specific test.\n' + '\n' + 'We dynamically generated a new test to display this failure.\n' + '    at eval (webpack://todoapp/./cypress/support/component.ts?:1:7)\n' + '    at ./cypress/support/component.ts (http://localhost:8081/__cypress/src/cypress_support_component_ts.js:17:1)\n' + '    at __webpack_require__ (http://localhost:8081/__cypress/src/main.js:281:42)\n' + '    at __webpack_require__.t (http://localhost:8081/__cypress/src/main.js:314:38)', parsedStack: [Array] }, state: 'failed', body: '() => {\n        throw err;\n      }', type: 'test', duration: 123, wallClockStartedAt: '2022-09-20T12:33:30.553Z', wallClockDuration: 126, timings: { lifecycle: 10, test: [Object] }, invocationDetails: { function: 'Object.getInvocationDetails', fileUrl: 'http://localhost:8081/__cypress/runner/cypress_runner.js', originalFile: 'http://localhost:8081/__cypress/runner/cypress_runner.js', line: 166290, column: 17, whitespace: '    ', stack: 'Error\n' + '    at Object.getInvocationDetails (http://localhost:8081/__cypress/runner/cypress_runner.js:166290:17)\n' + '    at Suite.addTest (http://localhost:8081/__cypress/runner/cypress_runner.js:162405:93)\n' + '    at Object.createRootTest (http://localhost:8081/__cypress/runner/cypress_runner.js:162566:21)\n' + '    at Object.normalizeAll (http://localhost:8081/__cypress/runner/cypress_runner.js:164466:17)\n' + '    at Socket.<anonymous> (http://localhost:8081/__/assets/index.48ac5e8f.js:106144:46)\n' + '    at Socket.onack (http://localhost:8081/__/assets/index.48ac5e8f.js:13487:11)\n' + '    at Socket.onpacket (http://localhost:8081/__/assets/index.48ac5e8f.js:13431:14)\n' + '    at Emitter2.emit (http://localhost:8081/__/assets/index.48ac5e8f.js:11611:23)\n' + '    at Manager.emitReserved (http://localhost:8081/__/assets/index.48ac5e8f.js:13280:11)\n' + '    at Manager.ondecoded (http://localhost:8081/__/assets/index.48ac5e8f.js:13757:10)' }, final: true, currentRetry: 0, retries: 0, _slow: 250 } ]
2022-09-20T12:33:30.688Z cypress:server:project onMocha suite end
2022-09-20T12:33:30.688Z cypress:server:reporter got mocha event 'suite end' with args: [ { id: 'r1', title: '', root: true, type: 'suite', file: 'src/components/HelloWorld.cy.ts', retries: -1, _slow: 250 } ]
2022-09-20T12:33:30.688Z cypress:server:project onMocha end
2022-09-20T12:33:30.688Z cypress:server:reporter got mocha event 'end' with args: [ { end: '2022-09-20T12:33:30.684Z' } ]

  0 passing (168ms)
  1 failing

  1) An uncaught error was detected outside of a test:
     Error: The following error originated from your test code, not from Cypress.

  > Module parse failed: Unexpected token (5:8)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| import { mount } from 'cypress/vue'
| 
> declare global {
|   namespace Cypress {
|     interface Chainable {

When Cypress detects uncaught errors originating from your test code it will automatically fail the current test.

Cypress could not associate this error to any specific test.

We dynamically generated a new test to display this failure.
      at eval (webpack://todoapp/./cypress/support/component.ts?:1:7)
      at ./cypress/support/component.ts (http://localhost:8081/__cypress/src/cypress_support_component_ts.js:17:1)
      at __webpack_require__ (http://localhost:8081/__cypress/src/main.js:281:42)
      at __webpack_require__.t (http://localhost:8081/__cypress/src/main.js:314:38)



2022-09-20T12:33:30.689Z cypress:server:run received project end { stats: { suites: 0, tests: 1, passes: 0, pending: 0, skipped: 0, failures: 1, wallClockStartedAt: 2022-09-20T12:33:30.513Z, wallClockEndedAt: 2022-09-20T12:33:30.684Z, wallClockDuration: 171 }, reporter: 'spec', reporterStats: { suites: 0, tests: 1, passes: 0, pending: 0, failures: 1, start: 2022-09-20T12:33:30.520Z, end: 2022-09-20T12:33:30.688Z, duration: 168 }, hooks: [], tests: [ { testId: 'r2', title: [Array], state: 'failed', body: '() => {\n        throw err;\n      }', displayError: 'Error: The following error originated from your test code, not from Cypress.\n' + '\n' + '  > Module parse failed: Unexpected token (5:8)\n' + 'You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders\n' + "| import { mount } from 'cypress/vue'\n" + '| \n' + '> declare global {\n' + '|   namespace Cypress {\n' + '|     interface Chainable {\n' + '\n' + 'When Cypress detects uncaught errors originating from your test code it will automatically fail the current test.\n' + '\n' + 'Cypress could not associate this error to any specific test.\n' + '\n' + 'We dynamically generated a new test to display this failure.\n' + '    at eval (webpack://todoapp/./cypress/support/component.ts?:1:7)\n' + '    at ./cypress/support/component.ts (http://localhost:8081/__cypress/src/cypress_support_component_ts.js:17:1)\n' + '    at __webpack_require__ (http://localhost:8081/__cypress/src/main.js:281:42)\n' + '    at __webpack_require__.t (http://localhost:8081/__cypress/src/main.js:314:38)', attempts: [Array] } ] }
2022-09-20T12:33:30.689Z cypress:server:run received videoController { videoController: { _pt: PassThrough { _readableState: [ReadableState], _events: [Object: null prototype], _eventsCount: 4, _maxListeners: undefined, _writableState: [WritableState], allowHalfOpen: true, [Symbol(kCapture)]: false, [Symbol(kCallback)]: null }, cmd: FfmpegCommand { _events: [Object: null prototype], _eventsCount: 6, _maxListeners: undefined, _inputs: [Array], _currentInput: [Object], _outputs: [Array], _currentOutput: [Object], _global: [Function], _complexFilters: [Function], options: [Object], logger: [Object], ffmpegProc: [ChildProcess], [Symbol(kCapture)]: false }, endVideoCapture: [Function: endVideoCapture], writeVideoFrame: [Function: writeVideoFrameWrap], startedVideoCapture: 2022-09-20T12:33:29.202Z, restart: [AsyncFunction: restart] } }
2022-09-20T12:33:30.689Z cypress:server:run delaying to extend video { DELAY_TO_LET_VIDEO_FINISH_MS: 1000 }
2022-09-20T12:33:31.691Z cypress:server:video capture codec data: { format: 'image2pipe', audio: '', video: 'png', duration: 'N/A', video_details: [ 'png',      'rgba(pc)', '1280x720', '25 fps', '25 tbr',   '25 tbn', '25 tbc' ] }
2022-09-20T12:33:31.832Z cypress:server:video capture ended
2022-09-20T12:33:31.832Z cypress:server:run ended video capture
2022-09-20T12:33:31.832Z cypress:lifecycle:EventRegistrar plugin event registered? { eventName: 'after:spec', isRegistered: false }
2022-09-20T12:33:31.832Z cypress:server:run executed after:spec

  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      1                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  1                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     HelloWorld.cy.ts                                                                 │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp     (1280x720)
     /cypress/screenshots/HelloWorld.cy.ts/An uncaught error was detected outside of                
     a test (failed).png                                                                            

2022-09-20T12:33:31.839Z cypress:server:run attempting to close the browser tab
2022-09-20T12:33:31.840Z cypress:server:browsers:electron closed event fired
2022-09-20T12:33:31.841Z cypress:server:windows error removing all extensions { err: TypeError: Object has been destroyed at Object.removeAllExtensions (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/gui/windows.js:39:26) at BrowserWindow.<anonymous> (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/electron.js:397:21) at Object.onceWrapper (node:events:646:26) at BrowserWindow.emit (node:events:538:35) at BrowserWindow.emit (node:domain:475:12) at CdpAutomation.sendClose [as sendCloseCommandFn] (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/electron.js:52:13) at CdpAutomation.onRequest (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/cdp_automation.js:295:33) at /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/browsers/electron.js:74:24 at apply (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/node_modules/lodash/lodash.js:490:27) at wrapper (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/node_modules/lodash/lodash.js:5379:16) at /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/automation/automation.js:55:51 at /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/automation/automation.js:122:28 at tryCatcher (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/util.js:16:23) at Function.Promise.attempt.Promise.try (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/method.js:39:29) at Automation.normalize (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/automation/automation.js:90:38) at /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/lib/automation/automation.js:153:25 at tryCatcher (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/util.js:16:23) at Promise._settlePromiseFromHandler (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:547:31) at Promise._settlePromise (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:604:18) at Promise._settlePromiseCtx (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/promise.js:641:10) at _drainQueueStep (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:97:12) at _drainQueue (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:86:9) at Async._drainQueues (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:102:5) at Immediate.Async.drainQueues [as _onImmediate] (/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/packages/server/node_modules/bluebird/js/release/async.js:15:14) at processImmediate (node:internal/timers:466:21) , extensions: undefined }
2022-09-20T12:33:31.841Z cypress:server:run all BrowserWindows closed, not exiting
2022-09-20T12:33:31.842Z cypress:server:browsers:electron debugger detached due to { reason: 'target closed' }
2022-09-20T12:33:31.843Z cypress:server:run resetting server state
2022-09-20T12:33:31.843Z cypress:proxy:http:util:buffers resetting buffers
2022-09-20T12:33:31.843Z cypress:network:cors Parsed URL { port: '80', tld: '', domain: '' }
2022-09-20T12:33:31.843Z cypress:network:cors Parsed URL { port: '41703', tld: 'localhost', domain: '' }
2022-09-20T12:33:31.843Z cypress:server:remote-states setting remote state { auth: undefined, origin: 'http://localhost:41703', strategy: 'file', fileServer: 'http://localhost', domainName: 'localhost', props: null } for http://localhost:41703
2022-09-20T12:33:31.843Z cypress:network:cors Parsed URL { port: '41703', tld: 'localhost', domain: '' }
2022-09-20T12:33:31.843Z cypress:server:remote-states getting remote state: { auth: undefined, origin: 'http://localhost:41703', strategy: 'file', fileServer: 'http://localhost', domainName: 'localhost', props: null } for: http://localhost:41703
2022-09-20T12:33:31.843Z cypress:server:run post processing recording
2022-09-20T12:33:31.843Z cypress:server:run ending the video recording { shouldUploadVideo: true, quiet: false, videoCompression: 32, processOptions: { compressedVideoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts-compressed.mp4', videoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4', chaptersConfig: ';FFMETADATA1\n' + '[CHAPTER]\n' + 'TIMEBASE=1/1000\n' + 'START=1225\n' + 'END=1351\n' + 'title=An uncaught error was detected outside of a test' } }

  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
2022-09-20T12:33:31.847Z cypress:server:video processing video { compressedVideoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts-compressed.mp4', videoName: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4', chaptersConfig: ';FFMETADATA1\n' + '[CHAPTER]\n' + 'TIMEBASE=1/1000\n' + 'START=1225\n' + 'END=1351\n' + 'title=An uncaught error was detected outside of a test', videoCompression: 32, onProgress: [Function: onProgress] }
2022-09-20T12:33:31.853Z cypress:server:video compression started { command: 'ffmpeg -n 20 /home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app/node_modules/@ffmpeg-installer/linux-x64/ffmpeg -i /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4.meta -i /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4 -y -vcodec libx264 -avioflags direct -fpsprobesize 0 -probesize 32 -analyzeduration 0 -preset fast -crf 32 -pix_fmt yuv420p -map_metadata 1 /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts-compressed.mp4' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: 'ffmpeg version N-47683-g0e8eb07980-static https://johnvansickle.com/ffmpeg/  Copyright (c) 2000-2018 the FFmpeg developers' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: '  built with gcc 6.3.0 (Debian 6.3.0-18+deb9u1) 20170516' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: '  configuration: --enable-gpl --enable-version3 --enable-static --disable-debug --disable-ffplay --disable-indev=sndio --disable-outdev=sndio --cc=gcc-6 --enable-fontconfig --enable-frei0r --enable-gnutls --enable-gray --enable-libaom --enable-libfribidi --enable-libass --enable-libvmaf --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librubberband --enable-libsoxr --enable-libspeex --enable-libvorbis --enable-libopus --enable-libtheora --enable-libvidstab --enable-libvo-amrwbenc --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: '  libavutil      56. 24.101 / 56. 24.101' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: '  libavcodec     58. 42.100 / 58. 42.100' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: '  libavformat    58. 24.100 / 58. 24.100' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: '  libavdevice    58.  6.101 / 58.  6.101' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: '  libavfilter     7. 46.101 /  7. 46.101' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: '  libswscale      5.  4.100 /  5.  4.100' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: '  libswresample   3.  4.100 /  3.  4.100' }
2022-09-20T12:33:31.855Z cypress:server:video compression stderr log { message: '  libpostproc    55.  4.100 / 55.  4.100' }
2022-09-20T12:33:31.856Z cypress:server:util:socket_allowed allowed socket closed, removing { localPort: 51182 }
2022-09-20T12:33:31.856Z cypress:server:util:socket_allowed allowed socket closed, removing { localPort: 51172 }
2022-09-20T12:33:31.857Z cypress:server:socket-base socket-disconnecting transport close
2022-09-20T12:33:31.857Z cypress:server:socket-base socket-disconnect transport close
2022-09-20T12:33:31.857Z cypress:server:video compression stderr log { message: "Input #0, ffmetadata, from '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4.meta':" }
2022-09-20T12:33:31.857Z cypress:server:video compression stderr log { message: '  Duration: 00:00:01.35, start: 0.000000, bitrate: 0 kb/s' }
2022-09-20T12:33:31.857Z cypress:server:video compression stderr log { message: '    Chapter #0:0: start 1.225000, end 1.351000' }
2022-09-20T12:33:31.857Z cypress:server:video compression stderr log { message: '    Metadata:' }
2022-09-20T12:33:31.857Z cypress:server:video compression stderr log { message: '      title           : An uncaught error was detected outside of a test' }
2022-09-20T12:33:31.858Z cypress:server:util:socket_allowed allowed socket closed, removing { localPort: 51190 }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: "Input #1, mov,mp4,m4a,3gp,3g2,mj2, from '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4':" }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: '  Metadata:' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: '    major_brand     : isom' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: '    minor_version   : 512' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: '    compatible_brands: isomiso2avc1mp41' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: '    encoder         : Lavf58.24.100' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: '  Duration: 00:00:01.68, start: 0.000000, bitrate: 201 kb/s' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: '    Stream #1:0(und): Video: h264 (High 4:4:4 Predictive) (avc1 / 0x31637661), yuv444p, 1280x720, 197 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc (default)' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: '    Metadata:' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: '      handler_name    : VideoHandler' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: 'Stream mapping:' }
2022-09-20T12:33:31.864Z cypress:server:video compression codec data: { format: 'ffmetadata', audio: '', video: '', duration: '00:00:01.35' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: '  Stream #1:0 -> #0:0 (h264 (native) -> h264 (libx264))' }
2022-09-20T12:33:31.864Z cypress:server:video compression stderr log { message: 'Press [q] to stop, [?] for help' }
2022-09-20T12:33:31.877Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] profile High, level 3.1, 4:2:0, 8-bit' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] 264 - core 157 r2935 545de2f - H.264/MPEG-4 AVC codec - Copyleft 2003-2018 - http://www.videolan.org/x264.html - options: cabac=1 ref=2 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=6 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=18 lookahead_threads=3 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=1 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=30 rc=crf mbtree=1 crf=32.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: "Output #0, mp4, to '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts-compressed.mp4':" }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '  Metadata:' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '    major_brand     : isom' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '    minor_version   : 512' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '    compatible_brands: isomiso2avc1mp41' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '    encoder         : Lavf58.24.100' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '    Chapter #0:0: start 1.225000, end 1.351000' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '    Metadata:' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '      title           : An uncaught error was detected outside of a test' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '    Stream #0:0(und): Video: h264 (libx264) (avc1 / 0x31637661), yuv420p, 1280x720, q=-1--1, 25 fps, 12800 tbn, 25 tbc (default)' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '    Metadata:' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '      handler_name    : VideoHandler' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '      encoder         : Lavc58.42.100 libx264' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '    Side data:' }
2022-09-20T12:33:31.879Z cypress:server:video compression stderr log { message: '      cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: -1' }
2022-09-20T12:33:32.042Z cypress:server:video compression stderr log { message: 'frame=   42 fps=0.0 q=-1.0 Lsize=      11kB time=00:00:01.56 bitrate=  55.4kbits/s speed=8.63x    ' }
2022-09-20T12:33:32.042Z cypress:server:video compression progress: { frames: 42, currentFps: 0, currentKbps: 55.4, targetSize: 11, timemark: '00:00:01.56', percent: 115.47002220577352 }
2022-09-20T12:33:32.042Z cypress:server:video compression stderr log { message: 'video:9kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 22.974510%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] frame I:2     Avg QP:20.82  size:  2024' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] frame P:10    Avg QP:24.16  size:   263' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] frame B:30    Avg QP:24.92  size:    47' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] consecutive B-frames:  4.8%  0.0%  0.0% 95.2%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] mb I  I16..4: 62.1% 35.8%  2.1%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] mb P  I16..4:  0.5%  2.7%  0.1%  P16..4:  0.6%  0.0%  0.0%  0.0%  0.0%    skip:96.1%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] mb B  I16..4:  0.1%  0.0%  0.0%  B16..8:  0.4%  0.0%  0.0%  direct: 0.0%  skip:99.6%  L0:60.2% L1:39.8% BI: 0.0%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] 8x8 transform intra:42.0% inter:40.9%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] coded y,uvDC,uvAC intra: 1.4% 1.1% 0.5% inter: 0.0% 0.0% 0.0%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] i16 v,h,dc,p: 92%  7%  2%  0%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 21% 33% 46%  0%  0%  0%  0%  0%  0%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 32% 36% 16%  2%  3%  3%  3%  1%  3%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] i8c dc,h,v,p: 96%  2%  2%  0%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] Weighted P-Frames: Y:0.0% UV:0.0%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] ref P L0: 94.0%  6.0%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] ref B L0: 88.3% 11.7%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] ref B L1: 98.7%  1.3%' }
2022-09-20T12:33:32.043Z cypress:server:video compression stderr log { message: '[libx264 @ 0x5dd5340] kb/s:38.56' }
2022-09-20T12:33:32.051Z cypress:server:video compression stderr log { message: '' }
2022-09-20T12:33:32.051Z cypress:server:video compression ended
  -  Finished processing: /home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pyt    (0 seconds)
                          honProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4                 

2022-09-20T12:33:32.055Z cypress:server:run spec results { stats: { suites: 0, tests: 1, passes: 0, pending: 0, skipped: 0, failures: 1, wallClockStartedAt: 2022-09-20T12:33:30.513Z, wallClockEndedAt: 2022-09-20T12:33:30.684Z, wallClockDuration: 171 }, reporter: 'spec', reporterStats: { suites: 0, tests: 1, passes: 0, pending: 0, failures: 1, start: 2022-09-20T12:33:30.520Z, end: 2022-09-20T12:33:30.688Z, duration: 168 }, hooks: [], tests: [ { testId: 'r2', title: [Array], state: 'failed', body: '() => {\n        throw err;\n      }', displayError: 'Error: The following error originated from your test code, not from Cypress.\n' + '\n' + '  > Module parse failed: Unexpected token (5:8)\n' + 'You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders\n' + "| import { mount } from 'cypress/vue'\n" + '| \n' + '> declare global {\n' + '|   namespace Cypress {\n' + '|     interface Chainable {\n' + '\n' + 'When Cypress detects uncaught errors originating from your test code it will automatically fail the current test.\n' + '\n' + 'Cypress could not associate this error to any specific test.\n' + '\n' + 'We dynamically generated a new test to display this failure.\n' + '    at eval (webpack://todoapp/./cypress/support/component.ts?:1:7)\n' + '    at ./cypress/support/component.ts (http://localhost:8081/__cypress/src/cypress_support_component_ts.js:17:1)\n' + '    at __webpack_require__ (http://localhost:8081/__cypress/src/main.js:281:42)\n' + '    at __webpack_require__.t (http://localhost:8081/__cypress/src/main.js:314:38)', attempts: [Array] } ], error: null, video: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4', screenshots: [ { screenshotId: 'i72du', name: null, testId: 'r2', testAttemptIndex: 0, takenAt: '2022-09-20T12:33:30.568Z', path: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots/HelloWorld.cy.ts/An uncaught error was detected outside of a test (failed).png', height: 720, width: 1280, pathname: undefined } ], spec: { fileExtension: '.ts', baseName: 'HelloWorld.cy.ts', fileName: 'HelloWorld', specFileExtension: '.cy.ts', relativeToCommonRoot: 'HelloWorld.cy.ts', specType: 'component', name: 'src/components/HelloWorld.cy.ts', relative: 'src/components/HelloWorld.cy.ts', absolute: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/src/components/HelloWorld.cy.ts' }, shouldUploadVideo: true }
2022-09-20T12:33:32.056Z cypress:server:run final results of all runs: { status: 'finished', startedTestsAt: 2022-09-20T12:33:30.513Z, endedTestsAt: 2022-09-20T12:33:30.684Z, totalDuration: 171, totalSuites: 0, totalTests: 1, totalPassed: 0, totalPending: 0, totalFailed: 1, totalSkipped: 0, runs: [ { stats: [Object], reporter: 'spec', reporterStats: [Object], hooks: [], tests: [Array], error: null, video: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos/HelloWorld.cy.ts.mp4', screenshots: [Array], spec: [Object], shouldUploadVideo: true } ], browserPath: '', browserName: 'electron', browserVersion: '102.0.5005.148', osName: 'linux', osVersion: 'Raspbian - 15.2', cypressVersion: '10.8.0', runUrl: undefined, config: { devServer: { framework: 'vue-cli', bundler: 'webpack' }, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp', rawJson: { component: [Object], devServer: [Object], envFile: {}, projectRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', projectName: 'tstapp' }, configFile: 'cypress.config.ts', morgan: false, isTextTerminal: true, socketId: 'mti55a9ua3', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: 'http://localhost:8081', blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/downloads', env: {}, execTimeout: 60000, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalSessionAndOrigin: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp', fixturesFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/fixtures', excludeSpecPattern: [ '**/__snapshots__/*', '**/__image_snapshots__/*' ], includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, nodeVersion: undefined, numTestsKeptInMemory: 0, platform: 'linux', pageLoadTimeout: 60000, port: 41703, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: '/home/DABIT-ANALYTICS/sebastian.mueller/.conda/envs/npmtst/bin/node', resolvedNodeVersion: '16.13.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/screenshots', slowTestThreshold: 250, scrollBehavior: 'top', supportFile: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support/component.ts', supportFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/support', taskTimeout: 60000, testIsolation: 'legacy', trashAssetsBeforeRuns: true, userAgent: null, video: true, videoCompression: 32, videosFolder: '/home/DABIT-ANALYTICS/sebastian.mueller/workspace/tools/pythonProject/vue/tstapp/cypress/videos', videoUploadOnPasses: true, viewportHeight: 500, viewportWidth: 500, waitForAnimations: true, watchForFileChanges: false, specPattern: '**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', autoOpen: false, browsers: [ [Object], [Object], [Object] ], clientRoute: '/__/', cypressBinaryRoot: '/home/DABIT-ANALYTICS/sebastian.mueller/.cache/Cypress/10.8.0/Cypress/resources/app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '10.8.0', xhrRoute: '/xhrs/', indexHtmlFile: 'cypress/support/component-index.html', cypressEnv: 'production', resolved: { animationDistanceThreshold: [Object], arch: [Object], baseUrl: [Object], blockHosts: [Object], chromeWebSecurity: [Object], clientCertificates: [Object], defaultCommandTimeout: [Object], downloadsFolder: [Object], env: {}, execTimeout: [Object], experimentalFetchPolyfill: [Object], experimentalInteractiveRunEvents: [Object], experimentalSessionAndOrigin: [Object], experimentalModifyObstructiveThirdPartyCode: [Object], experimentalSourceRewriting: [Object], experimentalSingleTabRunMode: [Object], experimentalStudio: [Object], experimentalWebKitSupport: [Object], fileServerFolder: [Object], fixturesFolder: [Object], excludeSpecPattern: [Object], includeShadowDom: [Object], keystrokeDelay: [Object], modifyObstructiveCode: [Object], nodeVersion: [Object], numTestsKeptInMemory: [Object], platform: [Object], pageLoadTimeout: [Object], port: [Object], projectId: [Object], redirectionLimit: [Object], reporter: [Object], reporterOptions: [Object], requestTimeout: [Object], resolvedNodePath: [Object], resolvedNodeVersion: [Object], responseTimeout: [Object], retries: [Object], screenshotOnRunFailure: [Object], screenshotsFolder: [Object], slowTestThreshold: [Object], scrollBehavior: [Object], supportFile: [Object], supportFolder: [Object], taskTimeout: [Object], testIsolation: [Object], trashAssetsBeforeRuns: [Object], userAgent: [Object], video: [Object], videoCompression: [Object], videosFolder: [Object], videoUploadOnPasses: [Object], viewportHeight: [Object], viewportWidth: [Object], waitForAnimations: [Object], watchForFileChanges: [Object], specPattern: [Object], browsers: [Object], hosts: [Object], isInteractive: [Object], testingType: [Object] }, testingType: 'component', componentTesting: true, remote: { auth: undefined, origin: 'http://localhost:8081', strategy: 'http', fileServer: null, domainName: 'localhost', props: [Object] }, browser: null, specs: [], proxyUrl: 'http://localhost:41703', browserUrl: 'http://localhost:8081/__/', reporterUrl: 'http://localhost:8081/__cypress/reporter', xhrUrl: '__cypress/xhrs/', proxyServer: 'http://localhost:41703', state: {} } }
2022-09-20T12:33:32.058Z cypress:server:browsers browsers.kill called with no active instance
2022-09-20T12:33:32.058Z cypress:lifecycle:EventRegistrar plugin event registered? { eventName: 'after:run', isRegistered: false }

====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  HelloWorld.cy.ts                         171ms        1        -        1        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     171ms        1        -        1        -        -  

2022-09-20T12:33:32.071Z cypress:server:cypress about to exit with code 1
2022-09-20T12:33:32.071Z cypress:server:browsers browsers.kill called with no active instance
2022-09-20T12:33:32.071Z cypress:proxy:http:util:prerequests metrics: { browserPreRequestsReceived: 17, proxyRequestsReceived: 0, immediatelyMatchedRequests: 0, unmatchedRequests: 0, unmatchedPreRequests: 17 }
2022-09-20T12:33:32.137Z cypress:cli child event fired { event: 'exit', code: 1, signal: null }

@ZachJW34 ZachJW34 self-assigned this Sep 21, 2022
@ZachJW34
Copy link
Contributor

Thanks for the info @msebas, I was able to reproduce the error with the information you provided.

I suspect the issue is coming from our use of the vue-cli -> resolveWebpackConfig (we rely on this to get the Webpack config) and your use of "type": "module" in your package.json. Vue cli has an init phase that can be asynchronous when using esm as it has to dynamically load the config file. What looks to be happening is that the webpack config resolve is occurring before the init is complete (there is no await service.init()) and the webpack plugins/chainers are not available.

Though this seems like an edge-case (only happens when vue.config.js is empty), I can confirm that this error occurs for a project that has content inside the vue config and is using "type": "module".

In terms of a fix, I could see it happen on both our end or we create an issue with vue-cli. Maybe both. The function we use seems like a public API so other developers might be using this as well, though the intention of the vue-cli team with regards to this function might be for internal use. On our end, we could stop relying on this function and use:

const Service = require('@vue-cli-service/lib/service')
const service = new Service(...)
await service.init(...)
const webpackConfig = service.resolveWebpackConfig()

A workaround if you don't require "type": "module" is to remove that from your package.json and then the operation should become synchronous. You'd have to change vue.config.js to use commonjs syntax though.

Let me know if the workaround works for you!

@ZachJW34
Copy link
Contributor

Also, if you're interested in contributing a fix for this that would be most welcome! The relevant code can be found here

@ZachJW34 ZachJW34 added CT Issue related to component testing routed-to-ct labels Sep 21, 2022
@cypress-bot cypress-bot bot added the stage: needs review The PR code is done & tested, needs review label Sep 22, 2022
@msebas
Copy link
Contributor Author

msebas commented Sep 22, 2022

@ZachJW34: I made a pull request with the fix you proposed for the cypress side. Any fix on the vue-cli side seems to be complicated. My approach would be to return a function in module.export that returns a promise that in turn resolves to the desired configuration. Sadly the function is not even called and I am unable to grasp why. I am going to go with the proposed merge request for my project.

Here is the content of the modified node_modules/@vue/cli-service/webpack.config.js in case anyone wants to use it as a stepping stone:

// webpack config as a file when using CLI commands.

const Service = require("@vue/cli-service");
let service = process.VUE_CLI_SERVICE

if (!service || process.env.VUE_CLI_API_MODE) {
    const Service = require('./lib/Service')
    service = new Service(process.env.VUE_CLI_CONTEXT || process.cwd())
}

module.exports = () => {
    const init_promise = service.init(process.env.VUE_CLI_MODE || process.env.NODE_ENV)
    if (init_promise && typeof init_promise.then === 'function') {
        // service.init may return a promise that has to be waited on
        return init_promise.then(() => {
            return service.resolveWebpackConfig();
        })
    }
    return service.resolveWebpackConfig();
};

@jennifer-shehane jennifer-shehane removed the stage: needs review The PR code is done & tested, needs review label Jun 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CT Issue related to component testing
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants