Skip to content

Commit f4fe6d6

Browse files
Lan Lebaolanlequang
Lan Le
authored andcommitted
feat WIP: display uivis data
1 parent 1bb45aa commit f4fe6d6

27 files changed

+2740932
-673915
lines changed

.github/workflows/e2e_testing.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
- name: Cypress run
1111
uses: cypress-io/github-action@v6
1212
with:
13-
build: npm run build
14-
start: npm start
13+
build: npm run --max_old_space_size=12288 build
14+
start: npm --max_old_space_size=12288 start
1515
browser: chrome

cypress.config.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
import { defineConfig } from "cypress";
22

33
export default defineConfig({
4+
pageLoadTimeout: 100000,
5+
requestTimeout: 100000,
6+
responseTimeout: 100000,
47
e2e: {
58
setupNodeEvents(on, config) {
69
// implement node event listeners here
710
},
8-
experimentalStudio: true
11+
experimentalStudio: true,
12+
pageLoadTimeout: 100000,
13+
requestTimeout: 100000,
14+
responseTimeout: 100000,
915
},
1016
});

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
"typescript": "^5.0.4"
4141
},
4242
"scripts": {
43-
"start": "react-scripts start",
44-
"build": "react-scripts build",
43+
"start": "react-scripts --max_old_space_size=12288 start",
44+
"build": "react-scripts --max_old_space_size=12288 build",
4545
"compile": "rm -rf dist && NODE_ENV=production babel --ignore tests,stories ./src --out-dir ./dist",
4646
"test": "react-scripts test --env=jsdom --verbose --testPathIgnorePatterns=./src/__tests__/fixtures/",
4747
"test:coverage": "CI=true react-scripts test --env=jsdom --verbose --testPathIgnorePatterns=./src/__tests__/fixtures/ --coverage",

0 commit comments

Comments
 (0)