Gathering detailed insights and metrics for vue-cli-plugin-e2e-nightwatch-cucumber
Gathering detailed insights and metrics for vue-cli-plugin-e2e-nightwatch-cucumber
Gathering detailed insights and metrics for vue-cli-plugin-e2e-nightwatch-cucumber
Gathering detailed insights and metrics for vue-cli-plugin-e2e-nightwatch-cucumber
[ABANDONED] Nightwatch/Cucumber plugin for Vue CLI 3
npm install vue-cli-plugin-e2e-nightwatch-cucumber
Typescript
Module System
Node Version
NPM Version
JavaScript (87.77%)
Gherkin (12.23%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
7 Stars
32 Commits
5 Forks
6 Watchers
2 Branches
3 Contributors
Updated on Jan 28, 2023
Latest Version
1.1.0
Package Id
vue-cli-plugin-e2e-nightwatch-cucumber@1.1.0
Unpacked Size
94.77 kB
Size
83.00 kB
File Count
14
NPM Version
6.4.1
Node Version
8.9.3
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Nightwatch/Cucumber plugin for Vue CLI 3
vue-cli-service test:e2e [options] [<GLOB|DIR|FILE>]
-e, --env specify browser environment to run in (as specified in your `nightwatch.conf.js`)
The plugin will generate exemplary feature files and step definitions. Everything is pre-configured for you, you just have to run the vue-cli-service test:e2e
command.
You can edit nightwatch.config.js
in your project root. If you want to change only specific parts of the default configuration you can use any library that recursively merges objects, like lodash.merge
:
1const merge = require('lodash.merge'); 2const config = require('vue-cli-plugin-e2e-nightwatch-cucumber/nightwatch.conf'); 3 4// https://lodash.com/docs/4.17.10#merge 5module.exports = merge(config, { 6 test_settings: { 7 default: { 8 desiredCapabilities: { 9 chromeOptions: { 10 // Override `['headless', 'disable-gpu']` to show Chrome's UI for debugging 11 args: ['disable-gpu'] 12 } 13 } 14 } 15 } 16});
All Cucumber CLI options are forwarded to the CLI. If used, an option will override the plugin's default option. For example, if you pass --format <TYPE[:PATH]>
you'll only override the default formatter
If you only want to run specific features you can call the vue-cli-service test:e2e
command with a glob pattern, directory, feature file, scenario (--name
) or tag (--tag
):
vue-cli-service test:e2e "tests/**/*.feature"
vue-cli-service test:e2e "tests/features"
vue-cli-service test:e2e "tests/features/duckduckgo-search.feature"
vue-cli-service test:e2e --name "Searching DuckDuckGo"
vue add e2e-nightwatch-cucumber
The following workaround is necessary to prevent a Cucumber error when symlinking. Please let me know if you have better suggestions!
You appear to be executing an install of cucumber (most likely a global install) that is different from your local install (the one required in your support files). For cucumber to work, you need to execute the same install that is required in your support files. Please execute the locally installed version to run your tests.
1# /path/vue-cli-plugin-e2e-nightwatch-cucumber 2npm link
1vue create my-project 2cd my-project 3npm link /path/vue-cli-plugin-e2e-nightwatch-cucumber 4vue invoke e2e-nightwatch-cucumber 5cp -r /path/vue-cli-plugin-e2e-nightwatch-cucumber/tests/support/ ./tests/support 6npm install cucumber cucumber-pretty nightwatch nightwatch-api 7npm run test:e2e -- --require tests/step-definitions --require tests/support
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/24 approved changesets -- score normalized to 0
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
60 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More