forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03-factory-constructor-mock.test.ts
More file actions
41 lines (33 loc) · 1.33 KB
/
03-factory-constructor-mock.test.ts
File metadata and controls
41 lines (33 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
// This example is adapted from the Jest guide here:
// https://jestjs.io/docs/en/es6-class-mocks#complete-example
const mockPlaySoundFile = jest.fn();
jest.mock('./SoundPlayer', () => {
return {
SoundPlayer: jest.fn().mockImplementation(() => {
return { playSoundFile: mockPlaySoundFile };
})
};
});
import { SoundPlayerConsumer } from './SoundPlayerConsumer';
import { SoundPlayer } from './SoundPlayer';
beforeEach(() => {
jest.mocked(SoundPlayer).mockClear();
mockPlaySoundFile.mockClear();
});
it('The consumer should be able to call new() on SoundPlayer', () => {
const soundPlayerConsumer = new SoundPlayerConsumer();
// Ensure constructor created the object:
expect(soundPlayerConsumer).toBeTruthy();
});
it('We can check if the consumer called the class constructor', () => {
new SoundPlayerConsumer();
expect(SoundPlayer).toHaveBeenCalledTimes(1);
});
it('We can check if the consumer called a method on the class instance', () => {
const soundPlayerConsumer = new SoundPlayerConsumer();
const coolSoundFileName: string = 'song.mp3';
soundPlayerConsumer.playSomethingCool();
expect(mockPlaySoundFile.mock.calls[0][0]).toEqual(coolSoundFileName);
});