Commit a1540c4a authored by Ben Hayward's avatar Ben Hayward

Updated spec tests

1 merge request!630[Sprint/QuietQuial](feat}: Remembering previous state of recurring wire checkbox. #2001
Pipeline #93900817 running with stages
......@@ -515,7 +515,7 @@ describe('WireCreatorComponent', () => {
comp.setPayloadType('offchain');
fixture.detectChanges();
expect(comp.wire.recurring).toBe(false);
expect(comp.wire.recurring).toBe(true);
const checkbox: DebugElement = getRecurringCheckbox();
checkbox.nativeElement.click();
......@@ -524,7 +524,7 @@ describe('WireCreatorComponent', () => {
fixture.detectChanges();
expect(checkbox).not.toBeNull();
expect(comp.wire.recurring).toBe(true);
expect(comp.wire.recurring).toBe(false);
});
it('should show creator tiers', () => {
......
Please register or to comment