made initial base structure

This commit is contained in:
2016-02-12 04:49:31 +01:00
parent aad645619c
commit e7b0b77987
14 changed files with 215 additions and 0 deletions

2
test/test.d.ts vendored Normal file
View File

@ -0,0 +1,2 @@
/// <reference path="ts/typings/main.d.ts" />
declare var taskbuffer: any;

11
test/test.js Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env node
/// <reference path="./typings/main.d.ts" />
var taskbuffer = require("../index.js");
describe("taskbuffer.task", function () {
describe(".task", function () {
it("should return a new task", function () {
var myTask = taskbuffer.task();
});
});
});