Created
November 25, 2018 00:11
-
-
Save prescottprue/083dfe8aaeb1a791d68773c6bbb024c8 to your computer and use it in GitHub Desktop.
Npm scripts for cypress-firebase + cypress tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"build:testConfig": "cypress-firebase createTestEnvFile", | |
"test": "npm run build:testConfig && cypress run", | |
"test:open": "npm run build:testConfig && cypress open", | |
"test:stage": "npm run test:run -- --env envName=stage", | |
"test:open:stage": "npm run test:open -- --env envName=stage", | |
"test:open:debug": "cross-env DEBUG=cypress:* npm test:open" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment