archive
/
JSFuckify
Archived
1
Fork 0
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

8 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);
});
});