taskbuffer/test/test.js

25 lines
943 B
JavaScript
Raw Normal View History

2016-02-18 21:26:18 +00:00
/// <reference path="../ts/typings/main.d.ts" />
2016-05-04 00:49:43 +00:00
var taskbuffer = require("../dist/index");
var classes = require("../dist/taskbuffer.classes");
var should = require("should");
describe("taskbuffer", function () {
describe(".task()", function () {
var testTask;
it("should return a new task to var testTask", function () {
testTask = taskbuffer.task();
});
it("testTask should be instance of Task", function () {
testTask.should.be.instanceof(classes.Task);
});
it("testTask.idle is true", function () {
if (!testTask.idle) {
throw new Error("testTask.idle is not true");
}
});
it("testTask.running is type boolean and initially false", function () {
testTask.running.should.be.type("boolean");
testTask.running.should.be.false();
2016-02-12 03:49:31 +00:00
});
});
});
2016-05-04 00:49:43 +00:00
//# sourceMappingURL=test.js.map