This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe("Vehicle", function() { | |
describe("constructor", function() { | |
it("should have a default type", function() { | |
var car = new Vehicle(); | |
expect(car.type).to.equal("car"); | |
}); | |
}); | |
}); |
NewerOlder