-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbutton.component.spec.ts
88 lines (70 loc) · 2.39 KB
/
button.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ButtonComponent } from './button.component';
describe('ButtonComponent', () => {
let component: ButtonComponent;
let fixture: ComponentFixture<ButtonComponent>;
let buttonEl: Element;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ButtonComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ButtonComponent);
component = fixture.componentInstance;
buttonEl = fixture.nativeElement.querySelector('.button');
fixture.detectChanges();
});
describe('should trigger emit with value', () => {
it('if counter === 5 and value === 2 then ', () => {
component.counter = 5;
component.value = 2;
spyOn(component.change, 'emit');
buttonEl.dispatchEvent(new Event('click'));
fixture.detectChanges();
expect(component.change.emit).toHaveBeenCalledWith(2);
});
it('if counter === 5 and value === -2 then', () => {
component.counter = 5;
component.value = -2;
spyOn(component.change, 'emit');
buttonEl.dispatchEvent(new Event('click'));
fixture.detectChanges();
expect(component.change.emit).toHaveBeenCalledWith(-2);
});
describe('should trigger emit with modified value', () => {
it('if couter === 10 and value === 3', () => {
component.counter = 10;
component.value = 3;
spyOn(component.change, 'emit');
buttonEl.dispatchEvent(new Event('click'));
fixture.detectChanges();
expect(component.change.emit).toHaveBeenCalledWith(0);
});
it('if couter === 7 and value === 8', () => {
component.counter = 7;
component.value = 8;
spyOn(component.change, 'emit');
buttonEl.dispatchEvent(new Event('click'));
fixture.detectChanges();
expect(component.change.emit).toHaveBeenCalledWith(3);
});
it('if couter === 0 and value === -2', () => {
component.counter = 0;
component.value = -2;
spyOn(component.change, 'emit');
buttonEl.dispatchEvent(new Event('click'));
fixture.detectChanges();
expect(component.change.emit).toHaveBeenCalledWith(-0);
});
it('if couter === 7 and value === -8', () => {
component.counter = 7;
component.value = -8;
spyOn(component.change, 'emit');
buttonEl.dispatchEvent(new Event('click'));
fixture.detectChanges();
expect(component.change.emit).toHaveBeenCalledWith(-7);
});
});
});
});