Skip to content
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
396
Merge Requests
52
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
aa437a89
Commit
aa437a89
authored
5 hours ago
by
Mark Harding
Browse files
Options
Download
(fix): failing spec tests
parent
1906416f
No related merge requests found
Pipeline
#98899220
failed with stages
in 5 minutes and 40 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
src/app/modules/wire/creator/creator.component.spec.ts
View file @
aa437a89
...
...
@@ -636,6 +636,7 @@ describe('WireCreatorComponent', () => {
payload
:
{
receiver
:
'
0x1234
'
,
address
:
''
},
payloadType
:
'
onchain
'
,
recurring
:
false
,
recurringInterval
:
'
monthly
'
,
});
}));
...
...
This diff is collapsed.
src/app/modules/wire/creator/creator.component.ts
View file @
aa437a89
...
...
@@ -36,7 +36,7 @@ export interface WireStruc {
payloadType
:
PayloadType
|
null
;
guid
:
any
;
recurring
:
boolean
;
recurringInterval
:
'
once
'
|
'
monthly
'
|
'
yearly
'
|
null
;
recurringInterval
?
:
'
once
'
|
'
monthly
'
|
'
yearly
'
|
null
;
payload
:
any
;
}
...
...
This diff is collapsed.
src/app/modules/wire/wire.service.spec.ts
View file @
aa437a89
...
...
@@ -59,6 +59,7 @@ describe('WireService', () => {
},
method
:
'
onchain
'
,
recurring
:
false
,
recurring_interval
:
'
monthly
'
,
});
}));
...
...
@@ -80,6 +81,7 @@ describe('WireService', () => {
payload
:
{
address
:
'
offchain
'
,
method
:
'
offchain
'
},
method
:
'
offchain
'
,
recurring
:
false
,
recurring_interval
:
'
monthly
'
,
});
}));
...
...
@@ -105,6 +107,7 @@ describe('WireService', () => {
},
method
:
'
usd
'
,
recurring
:
false
,
recurring_interval
:
'
monthly
'
,
});
}));
});
This diff is collapsed.
Please
register
or
sign in
to comment