-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathmanifest.yml
48 lines (40 loc) · 1.53 KB
/
manifest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: netlify-plugin-cypress
inputs:
# by default the Cypress tests run against the deployed URL
# and these settings apply during the "onSuccess" step
- name: enable
description: Run tests against the preview or production deploy
default: true
# Cypress comes with built-in Electron browser
# and this NPM package installs Chromium browser
- name: browser
description: Allowed values are chromium, electron
default: chromium
- name: configFile
description: Path to the Cypress config file to use
- name: record
description: Record test results to Cypress Dashboard
default: false
- name: spec
description: |
Run just the given spec or spec pattern,
equivalent to "cypress run --spec ..."
- name: group
description: |
If recording to Cypress Dashboard,
pass the group name with "cypress run --record --group ..."
- name: tag
description: |
If recording to Cypress Dashboard,
pass the tag with "cypress run --record --tag ..."
# tells the plugin how to start the server using custom command
# and waiting for an url, record to the dashboard, tag, etc
# see README "testing the site before build"
- name: preBuild
description: Run tests before building the site
# tells the plugin to start a static server during postBuild
# and test just the built static site.
# see README "testing the site after build"
# NOTE: does not execute Netlify API redirects or functions
- name: postBuild
description: Run tests against the built static site