mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:01:09 +08:00
Merge pull request #18196 from storybookjs/chore/fix-angular-test-presets
Cleanup noise from unit tests
This commit is contained in:
commit
3e2b7f10fd
@ -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;
|
||||||
|
@ -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',
|
||||||
|
@ -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',
|
||||||
|
@ -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(() => {
|
||||||
|
@ -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,
|
||||||
|
@ -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,
|
||||||
|
@ -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')();
|
||||||
|
@ -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'],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user