Skip to content
Next
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
803
Merge Requests
53
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
a1540c4a
Commit
a1540c4a
authored
26 minutes ago
by
Ben Hayward
Browse files
Options
Download
Updated spec tests
parent
ab24317b
feat/store-recurring-checkbox-2001
1 merge request
!630
[Sprint/QuietQuial](feat}: Remembering previous state of recurring wire checkbox. #2001
Pipeline
#93900817
running with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/app/modules/wire/creator/creator.component.spec.ts
View file @
a1540c4a
...
...
@@ -515,7 +515,7 @@ describe('WireCreatorComponent', () => {
comp
.
setPayloadType
(
'
offchain
'
);
fixture
.
detectChanges
();
expect
(
comp
.
wire
.
recurring
).
toBe
(
fals
e
);
expect
(
comp
.
wire
.
recurring
).
toBe
(
tru
e
);
const
checkbox
:
DebugElement
=
getRecurringCheckbox
();
checkbox
.
nativeElement
.
click
();
...
...
@@ -524,7 +524,7 @@ describe('WireCreatorComponent', () => {
fixture
.
detectChanges
();
expect
(
checkbox
).
not
.
toBeNull
();
expect
(
comp
.
wire
.
recurring
).
toBe
(
tru
e
);
expect
(
comp
.
wire
.
recurring
).
toBe
(
fals
e
);
});
it
(
'
should show creator tiers
'
,
()
=>
{
...
...
This diff is collapsed.
Please
register
or
sign in
to comment