2019-09-12 21:26:57 +00:00
|
|
|
/* globals describe, it */
|
|
|
|
const assert = require('assert').strict;
|
|
|
|
|
|
|
|
describe('Testing', () => {
|
2019-09-18 19:30:41 +00:00
|
|
|
it('should have tests, please write them', (done) => {
|
|
|
|
expect(true).toBe(true);
|
2019-09-12 21:26:57 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|