-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy path12-service-component.spec.ts
65 lines (56 loc) · 1.52 KB
/
12-service-component.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import { of } from 'rxjs';
import { render, screen } from '@testing-library/angular';
import { createMock } from '@testing-library/angular/jest-utils';
import { Customer, CustomersComponent, CustomersService } from './12-service-component';
test('renders the provided customers with manual mock', async () => {
const customers: Customer[] = [
{
id: '1',
name: 'sarah',
},
{
id: '2',
name: 'charlotte',
},
];
await render(CustomersComponent, {
componentProviders: [
{
provide: CustomersService,
useValue: {
load() {
return of(customers);
},
},
},
],
});
const listItems = screen.getAllByRole('listitem');
expect(listItems).toHaveLength(customers.length);
customers.forEach((customer) => screen.getByText(new RegExp(customer.name, 'i')));
});
test('renders the provided customers with createMock', async () => {
const customers: Customer[] = [
{
id: '1',
name: 'sarah',
},
{
id: '2',
name: 'charlotte',
},
];
const customersService = createMock(CustomersService);
customersService.load = jest.fn(() => of(customers));
await render(CustomersComponent, {
componentProviders: [
{
provide: CustomersService,
useValue: customersService,
},
],
});
const listItems = screen.getAllByRole('listitem');
expect(listItems).toHaveLength(customers.length);
customers.forEach((customer) => screen.getByText(new RegExp(customer.name, 'i')));
});