embark/packages/embark-testing/test/testing_test.js

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