lotech
Version:
Lotech markdown parser
17 lines (14 loc) • 334 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
/**
* Created by nicorama on 18/06/2016.
*/
exports.default = {
'expect John to be Johnny': function expectJohnToBeJohnny(test) {
test.expect(1);
test.equals("johnny", "johnny", "should be Johnny");
test.done();
}
};