forecast-api
Version:
A Forecast ([https://forecastapp.com](forecastapp.com)) API wrapper for Node.js.
38 lines (28 loc) • 769 B
JavaScript
require('dotenv').load();
var should = require('should');
var Forecast = require('../index');
var forecast = new Forecast({
accountId: process.env.ACCOUNT_ID,
authorization: process.env.AUTHORIZATION
});
describe('#assignments', function() {
this.timeout(5000);
it('should return an array of assignments', function(done) {
forecast.assignments(function(err, assignments) {
if (err) {
throw err;
}
assignments.should.be.an.Array;
done();
});
});
it('should return an array of assignments using start/end date', function(done) {
forecast.assignments({ startDate: new Date(), endDate: new Date(2014, 09, 01) }, function(err, assignments) {
if (err) {
throw err;
}
assignments.should.be.an.Array;
done();
});
});
});