Skip to content

Commit

Permalink
fixing spelling error, updating the time between each test.
Browse files Browse the repository at this point in the history
  • Loading branch information
zackurben committed Nov 12, 2017
1 parent 43e5ba5 commit 61ebda6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/technical.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module.exports = config => {
});

/**
* A generic function generator for api-like technicals.
* A generic function generator for apo-like technicals.
*
* @param {String} fn
* The apo-like function to use
Expand Down
2 changes: 1 addition & 1 deletion test/crypto.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jasmine.DEFAULT_TIMEOUT_INTERVAL = 30000;
jest.unmock('request-promise-native');
const alpha = require('../')();
const delay = require('delay');
const TIME = 4000;
const TIME = 5000;

test(`intraday crypto works`, () => {
expect.assertions(2);
Expand Down
2 changes: 1 addition & 1 deletion test/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jasmine.DEFAULT_TIMEOUT_INTERVAL = 30000;
jest.unmock('request-promise-native');
const alpha = require('../')();
const delay = require('delay');
const TIME = 4000;
const TIME = 5000;

test(`intraday data works`, () => {
expect.assertions(2);
Expand Down
2 changes: 1 addition & 1 deletion test/forex.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jasmine.DEFAULT_TIMEOUT_INTERVAL = 30000;
jest.unmock('request-promise-native');
const alpha = require('../')();
const delay = require('delay');
const TIME = 4000;
const TIME = 5000;

test(`forex data works`, () => {
expect.assertions(3);
Expand Down
2 changes: 1 addition & 1 deletion test/performance.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jasmine.DEFAULT_TIMEOUT_INTERVAL = 30000;
jest.unmock('request-promise-native');
const alpha = require('../')();
const delay = require('delay');
const TIME = 4000;
const TIME = 5000;

test(`sector performance data works`, () => {
expect.assertions(11);
Expand Down
2 changes: 1 addition & 1 deletion test/technical.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jasmine.DEFAULT_TIMEOUT_INTERVAL = 30000;
jest.unmock('request-promise-native');
const alpha = require('../')();
const delay = require('delay');
const TIME = 4000;
const TIME = 5000;

test(`sma data works`, () => {
expect.assertions(9);
Expand Down

0 comments on commit 61ebda6

Please sign in to comment.