Skip to content

Commit be7474c

Browse files
committed
remove tests
1 parent ed62ffd commit be7474c

File tree

11 files changed

+5
-660
lines changed

11 files changed

+5
-660
lines changed

.github/workflows/ci.yml

+1-38
Original file line numberDiff line numberDiff line change
@@ -25,41 +25,4 @@ jobs:
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
- run: make ci
28-
29-
cypress-e2e:
30-
name: Cypress Emulator Tests for Flow-Playground
31-
timeout-minutes: 10
32-
runs-on: ubuntu-latest
33-
steps:
34-
- name: Checkout
35-
uses: actions/checkout@v2
36-
37-
- name: Use Node.js ${{ matrix.node-version }}
38-
uses: actions/setup-node@v3
39-
with:
40-
node-version: ${{ matrix.node-version }}
41-
42-
- name: Install dependencies
43-
run: npm install
44-
45-
- name: Spin up docker backend
46-
run: npm run start-docker
47-
48-
- name: Cypress run emulator
49-
uses: cypress-io/github-action@v4
50-
with:
51-
start: npm run start
52-
wait-on: http://localhost:3000
53-
spec: cypress/e2e/playground.cy.ts
54-
record: true
55-
browser: chrome
56-
env:
57-
PLAYGROUND_API: 'http://localhost:8080'
58-
CYPRESS_RECORD_KEY: '${{ secrets.CYPRESS_RECORD_KEY }}'
59-
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
60-
61-
- uses: actions/upload-artifact@v3
62-
if: always()
63-
with:
64-
name: cypress-videos
65-
path: cypress/videos
28+

.gitignore

+1-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,4 @@ yarn-error.log*
2222
# ides
2323
.idea
2424
.vscode
25-
26-
# tests
27-
cypress/videos
28-
cypress/screenshots
25+
.vercel

cypress.config.ts

-15
This file was deleted.

cypress/e2e/playground.cy.ts

-127
This file was deleted.

cypress/fixtures/example.json

-5
This file was deleted.

cypress/support/commands.ts

-37
This file was deleted.

cypress/support/e2e.ts

-20
This file was deleted.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"build": "webpack --mode=production",
1010
"graphql:codegen": "npx graphql-codegen --config codegen.yml",
1111
"test": "echo Tests command not implemented.",
12-
"format:app": "prettier --write 'src' 'cypress'",
13-
"format:check:app": "prettier --check 'src/**/*.{js,jsx,ts,tsx,css}' 'cypress/**/*.{js,jsx,ts,tsx,css}'",
12+
"format:app": "prettier --write 'src'",
13+
"format:check:app": "prettier --check 'src/**/*.{js,jsx,ts,tsx,css}' ",
1414
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
1515
"start-docker": "docker run -d -e FLOW_DEBUG=true -e FLOW_SESSIONCOOKIESSECURE=false -p 8080:8080 gcr.io/dl-flow/playground-api:latest ?",
1616
"snyk-protect": "snyk protect",

0 commit comments

Comments
 (0)