Skip to content

Instantly share code, notes, and snippets.

View IanBoyanZhang's full-sized avatar

Ian Zhang IanBoyanZhang

View GitHub Profile
@IanBoyanZhang
IanBoyanZhang / first_test.js
Last active October 3, 2015 15:58
Minimal example of setting up a Chai/Mocha sandbox
describe("Vehicle", function() {
describe("constructor", function() {
it("should have a default type", function() {
var car = new Vehicle();
expect(car.type).to.equal("car");
});
});
});