mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-18 16:46:38 +00:00
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
/* globals describe, it */
|
|
const assert = require('assert').strict;
|
|
|
|
describe('Testing', () => {
|
|
it('should have tests', (done) => {
|
|
assert(false, 'No tests yet on testing');
|
|
done();
|
|
});
|
|
});
|