Merge pull request #18196 from storybookjs/chore/fix-angular-test-presets

Cleanup noise from unit tests
This commit is contained in:
Yann Braga 2022-05-16 16:42:23 +02:00 committed by GitHub
commit 3e2b7f10fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 11 additions and 8 deletions

View File

@ -1,4 +1,4 @@
// eslint-disable-next-line import/no-extraneous-dependencies // eslint-disable-next-line import/no-extraneous-dependencies
import 'jest-preset-angular'; import 'jest-preset-angular/setup-jest';
global.EventSource = class {} as any; global.EventSource = class {} as any;

View File

@ -142,7 +142,7 @@ describe('Build Storybook Builder', () => {
}); });
it('should throw error', async () => { it('should throw error', async () => {
buildStandaloneMock.mockRejectedValue(new Error()); buildStandaloneMock.mockRejectedValue(true);
const run = await architect.scheduleBuilder('@storybook/angular:start-storybook', { const run = await architect.scheduleBuilder('@storybook/angular:start-storybook', {
browserTarget: 'angular-cli:build-2', browserTarget: 'angular-cli:build-2',

View File

@ -124,7 +124,7 @@ describe('Start Storybook Builder', () => {
}); });
it('should throw error', async () => { it('should throw error', async () => {
buildStandaloneMock.mockRejectedValue(new Error()); buildStandaloneMock.mockRejectedValue(true);
const run = await architect.scheduleBuilder('@storybook/angular:start-storybook', { const run = await architect.scheduleBuilder('@storybook/angular:start-storybook', {
browserTarget: 'angular-cli:build-2', browserTarget: 'angular-cli:build-2',

View File

@ -22,6 +22,7 @@ describe('RendererFactory', () => {
rootTargetDOMNode = global.document.getElementById('root'); rootTargetDOMNode = global.document.getElementById('root');
rootDocstargetDOMNode = global.document.getElementById('root-docs'); rootDocstargetDOMNode = global.document.getElementById('root-docs');
(platformBrowserDynamic as any).mockImplementation(platformBrowserDynamicTesting); (platformBrowserDynamic as any).mockImplementation(platformBrowserDynamicTesting);
jest.spyOn(console, 'log').mockImplementation(() => {});
}); });
afterEach(() => { afterEach(() => {

View File

@ -2,6 +2,7 @@
{ {
"extends": "../../tsconfig.json", "extends": "../../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"baseUrl": ".",
"outDir": "../../out-tsc/lib", "outDir": "../../out-tsc/lib",
"target": "es2015", "target": "es2015",
"declaration": true, "declaration": true,

View File

@ -2,6 +2,7 @@
{ {
"extends": "../../tsconfig.json", "extends": "../../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"baseUrl": ".",
"outDir": "../../out-tsc/lib", "outDir": "../../out-tsc/lib",
"target": "es2015", "target": "es2015",
"declaration": true, "declaration": true,

View File

@ -1,4 +1,4 @@
import 'jest-preset-angular'; import 'jest-preset-angular/setup-jest';
import './globalMocks'; import './globalMocks';
require('@storybook/babel-plugin-require-context-hook/register')(); require('@storybook/babel-plugin-require-context-hook/register')();

View File

@ -7,7 +7,7 @@ module.exports = {
preset: 'jest-preset-angular', preset: 'jest-preset-angular',
globals: { globals: {
'ts-jest': { 'ts-jest': {
tsConfig: path.join(__dirname, 'src/tsconfig.spec.json'), tsconfig: path.join(__dirname, 'src/tsconfig.spec.json'),
stringifyContentPathRegex: '\\.html$', stringifyContentPathRegex: '\\.html$',
astTransformers: { astTransformers: {
before: [ before: [
@ -26,9 +26,9 @@ module.exports = {
}, },
moduleFileExtensions: [...config.moduleFileExtensions, 'html'], moduleFileExtensions: [...config.moduleFileExtensions, 'html'],
snapshotSerializers: [ snapshotSerializers: [
'jest-preset-angular/build/AngularNoNgAttributesSnapshotSerializer.js', 'jest-preset-angular/build/serializers/html-comment',
'jest-preset-angular/build/AngularSnapshotSerializer.js', 'jest-preset-angular/build/serializers/ng-snapshot',
'jest-preset-angular/build/HTMLCommentSerializer.js', 'jest-preset-angular/build/serializers/no-ng-attributes',
], ],
setupFilesAfterEnv: ['./jest-config/setup.ts'], setupFilesAfterEnv: ['./jest-config/setup.ts'],
testPathIgnorePatterns: ['app.component.spec.ts'], testPathIgnorePatterns: ['app.component.spec.ts'],