forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoundPlayerConsumer.test.ts
More file actions
36 lines (28 loc) · 1.41 KB
/
SoundPlayerConsumer.test.ts
File metadata and controls
36 lines (28 loc) · 1.41 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
// 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#manual-mock
jest.mock('./SoundPlayer'); // SoundPlayer is now a mock constructor
import { SoundPlayer } from './SoundPlayer';
import { mockPlaySoundFile } from './__mocks__/SoundPlayer';
import { SoundPlayerConsumer } from './SoundPlayerConsumer';
beforeEach(() => {
// Clear all instances and calls to constructor and all methods:
jest.mocked(SoundPlayer).mockClear();
mockPlaySoundFile.mockClear();
});
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: SoundPlayerConsumer = new SoundPlayerConsumer();
const coolSoundFileName: string = 'song.mp3';
soundPlayerConsumer.playSomethingCool();
expect(mockPlaySoundFile).toHaveBeenCalledWith(coolSoundFileName);
});
// The test below validates that jest-improved-resolver.js is working correctly
import { SoundPlayer as MockSoundPlayer } from './__mocks__/SoundPlayer';
it('Importing ./__mocks__/SoundPlayer returns the same object as importing ./SoundPlayer', () => {
expect(SoundPlayer).toBe(MockSoundPlayer);
});