mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-11 22:34:24 +00:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
/* globals describe, it */
|
|
const assert = require('assert').strict;
|
|
|
|
describe('Testing', () => {
|
|
it('should have tests, please write them', (done) => {
|
|
expect(true).toBe(true);
|
|
done();
|
|
});
|
|
});
|