-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscenarios.spec.ts
50 lines (44 loc) · 1.08 KB
/
scenarios.spec.ts
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
42
43
44
45
46
47
48
49
50
import { Maybe } from '@/src/maybe';
describe('Maybe', () => {
describe('scenarios', () => {
test('nothing is done when there is no value', async () => {
let functionCalls = 0;
const user = await Maybe.tryFirst(
getUsers(),
(u) => u.hasConfirmedAccount
)
.tapAsync(sendPromotionalEmail)
.bind(({ referralAccount }) => referralAccount)
.tap(sendPromotionalEmail)
.toPromise();
function sendPromotionalEmail(user: User): Promise<void> {
functionCalls++;
return Promise.resolve();
}
expect(functionCalls).toBe(0);
expect(user).toHaveNoValue();
});
});
});
type User = {
email: string;
firstName: string;
lastName: string;
id: string;
roles: string[];
hasConfirmedAccount: boolean;
referralAccount: Maybe<User>;
};
function getUsers(): User[] {
return [
{
email: '[email protected]',
firstName: 'Test',
lastName: 'User',
hasConfirmedAccount: false,
referralAccount: Maybe.none(),
id: '1234',
roles: ['user'],
},
];
}