change(ui): add CICD testing command

This commit is contained in:
nick-delirium 2023-01-18 19:55:25 +01:00 committed by Delirium
parent e346541411
commit ba7c3f439b
5 changed files with 4 additions and 10 deletions

3
frontend/.gitignore vendored
View file

@ -17,4 +17,5 @@ app/components/ui/SVG.js
!.yarn/versions
*.env.json
cypress.env.json
cypress/snapshots/__diff_output__/
cypress/snapshots/__diff_output__/
cypress/videos/

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

View file

@ -17,7 +17,8 @@
"postinstall": "yarn gen:icons && yarn gen:colors",
"build-storybook": "build-storybook",
"test": "jest",
"cy:open": "cypress open"
"cy:open": "cypress open",
"cy:test": "cypress run --browser chrome"
},
"dependencies": {
"@floating-ui/react-dom-interactions": "^0.10.3",

View file

@ -1,8 +0,0 @@
import WebPlayer from 'App/player/web/WebPlayer';
import SimpleStore from 'App/player/common/SimpleStore'
let store = new SimpleStore({
...WebPlayer.INITIAL_STATE,
})
const player = new WebPlayer(store, session, false)