Cypress plugin for use with cypress-boilerplate.
Read more about the boilerplate project here
npm install cypress-setup-utilities
import { defineConfig } from 'cypress'
const finalConfig = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// Setup plugins
config = import('@optimumqa/cypress-setup-utilities')(on, config)
return config
},
},
})
Lower versions than v10 are not supported.
This part takes your environment variables passed in CLI, and saves them to your config.
This particular project looks for following arguments: [product, env, type]
name | type | default |
---|---|---|
product |
String |
undefined |
env |
String |
staging |
type |
String |
default |
type
can be excluded
You can access these arguments from the config using
Cypress.env('PRODUCT')
Cypress.env('ENV')
Cypress.env('TYPE')
// Or get the original config from CLI(where some values are not set to default)
Cypress.env('originalConfig')
Test files are set depending on the product
argument.
specPattern
inside the config will be populated with all spec files from ./cypress/e2e/product/**/*
.
This will only happen if you have not specified
specPattern
already.
So when you run
$ cypress run --env product=yourProductName
It will give you only the spec files from ./cypress/e2e/yourProductname/
.
If you have the need to specify different config types for any reason. You can do that by creating them inside ./cypress/configs/your-product-name/
.
For example:
- Create
daily.ts
where we have the need to specify only 3 spec files
export default {
e2e: {
specPattern: ['**/your-product-name/spec1.ts', '**/your-product-name/spec2.ts', '**/your-product-name/spec3.ts'],
},
}
Then you create a command in package.json inside scripts
:
{
"scripts": {
"yourProductName-staging-daily": "cypress run -e product=yourProductName,env=staging,type=daily"
}
}
Create a file cypress.local.ts
inside ./cypress/configs/
. Your local config will be then merged with the global config and product config.
Here you can place your overrides.
If you need to temporarily disable this file, just rename it. Example: cypress.local.ts -> cypress.local-tmp.ts
It is ignored by GIT.
By default, in the parent boilerplate, three environments are created: [staging, release, production] inside the ./cypress/fixtures/yourProductName/
populated with the baseUrl
per environment.
When you run cypress, this plugin will take the baseUrl of the current product and environment, and set it to the final cypress config if you have the need to get the baseUrl
from there, and not from the fixtures routes.json
file.
Therefor, you can have multiple products inside the parent boilerplate, as this plugin sets up your config depending on the parameters you've given it.
Keeps the package.json
clutter free and gives it intuitive commands to run.
Deletes videos from passed test cases.
- Project is dynamically set up based on the four arguments above
- If you specify
baseUrl
orspecPattern
in configs, they will not be overwritten.
Contributions, issues and feature requests are welcome.
Feel free to check issues page if you want to contribute.
Please ⭐️ this repository if this project helped you!
This project is MIT licensed.