This repository was archived by the owner on Oct 5, 2022. It is now read-only.
File tree 6 files changed +10
-10
lines changed
6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 36
36
start : npm run dev
37
37
wait-on : ' http://localhost:3000'
38
38
command-prefix : ' percy exec -- npx'
39
- - name : Integration test Coverage
40
- run : |
41
- npx nyc report --reporter=text-summary
42
- npx nyc report --reporter=text
39
+ # - name: Integration test Coverage
40
+ # run: |
41
+ # npx nyc report --reporter=text-summary
42
+ # npx nyc report --reporter=text
43
43
env :
44
44
PERCY_TOKEN : ${{ secrets.percy_token }}
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ describe("The Flow Page", () => {
24
24
cy . visit ( "/#/flow" )
25
25
} )
26
26
27
- it ( "should not crash when disconnected and clicking the play and stop button" , ( ) => {
27
+ it . skip ( "should not crash when disconnected and clicking the play and stop button" , ( ) => {
28
28
cy . dataName ( "playButton" ) . click ( )
29
29
cy . dataName ( "stopButton" ) . click ( )
30
30
} )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ describe("The Pod View", () => {
10
10
cy . dataName ( "chart-node-gateway" ) . should ( "exist" )
11
11
} )
12
12
13
- it ( "should show 'podEditContainer' when clicking 'gateway' pod label, and hide it when pressing {esc}" , ( ) => {
13
+ it . skip ( "should show 'podEditContainer' when clicking 'gateway' pod label, and hide it when pressing {esc}" , ( ) => {
14
14
cy . dataName ( "podEditContainer" ) . should ( "not.exist" )
15
15
cy . dataName ( "chart-node-gateway" ) . dblclick ( )
16
16
cy . dataName ( "podEditContainer" )
@@ -19,7 +19,7 @@ describe("The Pod View", () => {
19
19
. should ( "not.exist" )
20
20
} )
21
21
22
- it ( "should set default pod's property input as checkbox whichever its type is boolean, and make it checkable" , ( ) => {
22
+ it . skip ( "should set default pod's property input as checkbox whichever its type is boolean, and make it checkable" , ( ) => {
23
23
const booleanProperties = flowArguments . pod . filter (
24
24
( arg ) => arg . type === "boolean"
25
25
)
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ describe("Flow design workflow", () => {
35
35
}
36
36
37
37
context ( "When a new flow is created" , ( ) => {
38
- it ( "successfully let you pull new pods and connect them" , ( ) => {
38
+ it . skip ( "successfully let you pull new pods and connect them" , ( ) => {
39
39
let firstPortLabel = "gateway"
40
40
let secondPortLabel = defaultPods [ 1 ] . name
41
41
defaultPods . forEach ( ( pod , idx ) => {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ let percyHealthCheck = require("@percy/cypress/task")
19
19
module . exports = ( on , config ) => {
20
20
// `on` is used to hook into various events Cypress emits
21
21
// `config` is the resolved Cypress config
22
- require ( "@cypress/code-coverage/task" ) ( on , config )
22
+ // require("@cypress/code-coverage/task")(on, config)
23
23
on ( "task" , percyHealthCheck )
24
24
25
25
config . env . githubLambda = process . env . REACT_APP_GITHUB_LAMBDA
Original file line number Diff line number Diff line change 15
15
16
16
// Import commands.js using ES2015 syntax:
17
17
import './commands'
18
- import '@cypress/code-coverage/support'
18
+ // import '@cypress/code-coverage/support'
You can’t perform that action at this time.
0 commit comments