Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Menu
Open sidebar
Minds
Minds Frontend
Commits
dd5308eb
Commit
dd5308eb
authored
Nov 27, 2019
by
Mark Harding
Browse files
(fix): failing spec tests
parent
1906416f
Pipeline
#98897006
failed with stages
in 5 minutes and 40 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/app/modules/wire/creator/creator.component.spec.ts
View file @
dd5308eb
...
...
@@ -636,6 +636,7 @@ describe('WireCreatorComponent', () => {
payload
:
{
receiver
:
'
0x1234
'
,
address
:
''
},
payloadType
:
'
onchain
'
,
recurring
:
false
,
recurringInterval
:
'
monthly
'
,
});
}));
...
...
src/app/modules/wire/creator/creator.component.ts
View file @
dd5308eb
...
...
@@ -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
;
}
...
...
src/app/modules/wire/wire.service.spec.ts
View file @
dd5308eb
...
...
@@ -59,6 +59,7 @@ describe('WireService', () => {
},
method
:
'
onchain
'
,
recurring
:
false
,
recurringInterval
:
'
monthly
'
,
});
}));
...
...
@@ -80,6 +81,7 @@ describe('WireService', () => {
payload
:
{
address
:
'
offchain
'
,
method
:
'
offchain
'
},
method
:
'
offchain
'
,
recurring
:
false
,
recurringInterval
:
'
monthly
'
,
});
}));
...
...
@@ -105,6 +107,7 @@ describe('WireService', () => {
},
method
:
'
usd
'
,
recurring
:
false
,
recurringInterval
:
'
monthly
'
,
});
}));
});
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment