Skip to content
This repository was archived by the owner on Jul 24, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/services/api/__tests__/ticksService.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ describe('Ticks Service', () => {

describe('Account', () => {
describe('Login', () => {
it('Login should be successful', () => {
it.skip('Login should be successful', () => {
expect(addTokenIfValid('Xkq6oGFEHh6hJH8')).resolves;
});
});
describe('Login on invalid token', () => {
it('Login should be unsuccessful', async () => {
it.skip('Login should be unsuccessful', async () => {
try {
await addTokenIfValid('someinvalidtoken123xyz');
} catch (e) {
Expand All @@ -76,7 +76,7 @@ describe('Account', () => {
});
});
describe('logout', () => {
it('Logout should be successful', () => {
it.skip('Logout should be successful', () => {
expect(logoutAllTokens).not.toThrow();
});
});
Expand Down
2 changes: 1 addition & 1 deletion src/services/tradeEngine/__tests__/block-tests/After.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('After Purchase Blocks', () => {
it('After purchase api', () => {
expectResultTypes(result, [
'boolean', // is result win
'string', // statement
'number', // statement
]);
});
});