33 changed files with 1898 additions and 209 deletions
@ -0,0 +1,37 @@ |
|||||
|
export default { |
||||
|
preset: 'ts-jest', |
||||
|
roots: ['<rootDir>/tests/'], |
||||
|
clearMocks: true, |
||||
|
moduleDirectories: ['node_modules', 'src'], |
||||
|
moduleFileExtensions: ['js', 'ts', 'vue', 'tsx', 'jsx', 'json', 'node'], |
||||
|
modulePaths: ['<rootDir>/src', '<rootDir>/node_modules'], |
||||
|
testMatch: [ |
||||
|
'**/tests/**/*.[jt]s?(x)', |
||||
|
'**/?(*.)+(spec|test).[tj]s?(x)', |
||||
|
'(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$', |
||||
|
], |
||||
|
testPathIgnorePatterns: [ |
||||
|
'<rootDir>/tests/server/', |
||||
|
'<rootDir>/tests/__mocks__/', |
||||
|
'/node_modules/', |
||||
|
], |
||||
|
transform: { |
||||
|
'^.+\\.tsx?$': 'ts-jest', |
||||
|
'^.+\\.(vue)$': 'vue-jest', |
||||
|
}, |
||||
|
transformIgnorePatterns: ['<rootDir>/tests/__mocks__/', '/node_modules/'], |
||||
|
// A map from regular expressions to module names that allow to stub out resources with a single module
|
||||
|
moduleNameMapper: { |
||||
|
'\\.(vs|fs|vert|frag|glsl|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': |
||||
|
'<rootDir>/tests/__mocks__/fileMock.ts', |
||||
|
'\\.(sass|s?css|less)$': '<rootDir>/tests/__mocks__/styleMock.ts', |
||||
|
'\\?worker$': '<rootDir>/tests/__mocks__/workerMock.ts', |
||||
|
'^/@/(.*)$': '<rootDir>/src/$1', |
||||
|
}, |
||||
|
testEnvironment: 'jsdom', |
||||
|
verbose: true, |
||||
|
collectCoverage: false, |
||||
|
coverageDirectory: 'coverage', |
||||
|
collectCoverageFrom: ['src/**/*.{js,ts,vue}'], |
||||
|
coveragePathIgnorePatterns: ['^.+\\.d\\.ts$'], |
||||
|
}; |
||||
@ -0,0 +1 @@ |
|||||
|
export default ''; |
||||
@ -0,0 +1 @@ |
|||||
|
export default {}; |
||||
@ -0,0 +1,5 @@ |
|||||
|
export default jest.fn().mockImplementation(() => ({ |
||||
|
postMessage: jest.fn(), |
||||
|
onmessage: jest.fn(), |
||||
|
onerror: jest.fn(), |
||||
|
})); |
||||
|
After Width: | Height: | Size: 215 KiB |
|
After Width: | Height: | Size: 114 KiB |
|
After Width: | Height: | Size: 405 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
@ -0,0 +1,16 @@ |
|||||
|
// import { mount } from '@vue/test-utils';
|
||||
|
// import { Button } from '/@/components/Button';
|
||||
|
|
||||
|
test('if jest is normal.', async () => { |
||||
|
expect('jest').toEqual('jest'); |
||||
|
}); |
||||
|
|
||||
|
// TODO Vue component testing is not supported temporarily
|
||||
|
// test('is a Vue instance.', async () => {
|
||||
|
// const wrapper = mount(Button, {
|
||||
|
// slots: {
|
||||
|
// default: 'Button text',
|
||||
|
// },
|
||||
|
// });
|
||||
|
// expect(wrapper.html()).toContain('Button text');
|
||||
|
// });
|
||||
File diff suppressed because it is too large
Loading…
Reference in new issue