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
ea55d0f3
Commit
ea55d0f3
authored
5 hours ago
by
Mark Harding
Browse files
Options
Download
(fix): failing spec tests
parent
1906416f
fix/spec-tests-for-wire
No related merge requests found
Pipeline
#98901601
canceled with stages
in 6 minutes and 28 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
src/app/modules/wire/creator/creator.component.spec.ts
View file @
ea55d0f3
...
...
@@ -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 @
ea55d0f3
...
...
@@ -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 @
ea55d0f3
...
...
@@ -39,6 +39,7 @@ describe('WireService', () => {
payload
:
{
receiver
:
'
0x1234
'
,
address
:
''
},
payloadType
:
'
onchain
'
,
recurring
:
false
,
recurringInterval
:
'
once
'
,
});
tick
();
...
...
@@ -59,6 +60,7 @@ describe('WireService', () => {
},
method
:
'
onchain
'
,
recurring
:
false
,
recurring_interval
:
'
once
'
,
});
}));
...
...
@@ -69,6 +71,7 @@ describe('WireService', () => {
payload
:
null
,
payloadType
:
'
offchain
'
,
recurring
:
false
,
recurringInterval
:
'
once
'
,
});
tick
();
...
...
@@ -80,6 +83,7 @@ describe('WireService', () => {
payload
:
{
address
:
'
offchain
'
,
method
:
'
offchain
'
},
method
:
'
offchain
'
,
recurring
:
false
,
recurring_interval
:
'
once
'
,
});
}));
...
...
@@ -90,6 +94,7 @@ describe('WireService', () => {
payload
:
{
address
:
'
offchain
'
,
token
:
'
tok_KPte7942xySKBKyrBu11yEpf
'
},
payloadType
:
'
usd
'
,
recurring
:
false
,
recurringInterval
:
'
once
'
,
});
tick
();
...
...
@@ -105,6 +110,7 @@ describe('WireService', () => {
},
method
:
'
usd
'
,
recurring
:
false
,
recurring_interval
:
'
once
'
,
});
}));
});
This diff is collapsed.
Please
register
or
sign in
to comment