Browse Source

increase timeout

pull/27728/head
shaodahong 4 years ago
parent
commit
4ce36d2680
  1. 1
      .jest.image.js
  2. 1
      docker-compose.yml
  3. 2
      jest-puppeteer.config.js
  4. 2
      tests/shared/imageTest.ts

1
.jest.image.js

@ -20,4 +20,5 @@ module.exports = {
},
},
preset: 'jest-puppeteer',
testTimeout: 10000,
};

1
docker-compose.yml

@ -11,6 +11,7 @@ services:
- './jest-stare:/app/jest-stare'
- './dist:/app/dist'
- '.jest.image.js:/app/.jest.image.js'
- './jest-puppeteer.config.js:/app/jest-puppeteer.config.js'
- './imageSnapshots:/app/imageSnapshots'
- './imageDiffSnapshots:/app/imageDiffSnapshots'
entrypoint: "jest --config .jest.image.js --no-cache -i"

2
jest-puppeteer.config.js

@ -10,6 +10,4 @@ module.exports = {
'--disable-dev-shm-usage',
],
},
browser: 'chromium',
browserContext: 'default',
};

2
tests/shared/imageTest.ts

@ -16,7 +16,6 @@ expect.extend({ toMatchImageSnapshot });
// eslint-disable-next-line jest/no-export
export default function imageTest(component: React.ReactElement) {
describe(`Image test`, () => {
it('component image screenshot should correct', async () => {
MockDate.set(moment('2016-11-22').valueOf());
await page.goto(`file://${process.cwd()}/tests/index.html`);
@ -32,7 +31,6 @@ export default function imageTest(component: React.ReactElement) {
MockDate.reset();
});
});
}
type Options = {

Loading…
Cancel
Save