supress unnecessary angular console logs from tests

This commit is contained in:
Yann Braga 2022-05-16 12:44:24 +02:00
parent 5452005302
commit 71986620b0
2 changed files with 2 additions and 1 deletions

View File

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

View File

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