Commit d190f9c7 authored by 陈帅's avatar 陈帅

Increase timeout limit

parent 918d67ff
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
"dependencies": { "dependencies": {
"@antv/data-set": "^0.9.6", "@antv/data-set": "^0.9.6",
"@babel/runtime": "^7.1.2", "@babel/runtime": "^7.1.2",
"antd": "^3.10.0", "antd": "^3.10.4",
"bizcharts": "^3.2.2", "bizcharts": "^3.2.2",
"bizcharts-plugin-slider": "^2.0.3", "bizcharts-plugin-slider": "^2.0.3",
"classnames": "^2.2.6", "classnames": "^2.2.6",
...@@ -73,9 +73,6 @@ ...@@ -73,9 +73,6 @@
"eslint-plugin-jsx-a11y": "^6.1.2", "eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-markdown": "^1.0.0-beta.6", "eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-react": "^7.11.1", "eslint-plugin-react": "^7.11.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.10.0",
"tslint-react": "^3.6.0",
"gh-pages": "^2.0.1", "gh-pages": "^2.0.1",
"husky": "^1.1.2", "husky": "^1.1.2",
"lint-staged": "^7.2.0", "lint-staged": "^7.2.0",
...@@ -86,12 +83,15 @@ ...@@ -86,12 +83,15 @@
"stylelint": "^9.4.0", "stylelint": "^9.4.0",
"stylelint-config-prettier": "^4.0.0", "stylelint-config-prettier": "^4.0.0",
"stylelint-config-standard": "^18.0.0", "stylelint-config-standard": "^18.0.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.10.0",
"tslint-react": "^3.6.0",
"umi": "^2.2.1", "umi": "^2.2.1",
"umi-plugin-ga": "^1.1.3", "umi-plugin-ga": "^1.1.3",
"umi-plugin-react": "^1.2.0" "umi-plugin-react": "^1.2.0"
}, },
"optionalDependencies": { "optionalDependencies": {
"puppeteer": "^1.9.0" "puppeteer": "^1.10.0"
}, },
"lint-staged": { "lint-staged": {
"**/*.{js,jsx,less}": [ "**/*.{js,jsx,less}": [
......
...@@ -28,6 +28,7 @@ describe('Homepage', () => { ...@@ -28,6 +28,7 @@ describe('Homepage', () => {
}; };
beforeAll(async () => { beforeAll(async () => {
jest.setTimeout(1000000);
browser = await puppeteer.launch({ args: ['--no-sandbox'] }); browser = await puppeteer.launch({ args: ['--no-sandbox'] });
page = await browser.newPage(); page = await browser.newPage();
}); });
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment