This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
JSFuckify/tests/basic.test.js
2016-03-25 12:28:28 +00:00

7 lines
178 B
JavaScript

const expect = require('chai').expect;
describe('Basic Mocha Setup', function () {
it('adds two and two and gets four', function () {
expect(2 + 2).to.equal(4);
});
});