mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-30 08:53:09 +02:00
15 lines
246 B
JavaScript
15 lines
246 B
JavaScript
/**
|
|
* it Tests!
|
|
*/
|
|
|
|
const assert = require('assert');
|
|
|
|
const _it = require('../built/api/it').default;
|
|
/*
|
|
describe('it', () => {
|
|
it('it must be a string', () => {
|
|
const [val, err] = _it(42).must.be.a.string().qed();
|
|
assert.eql
|
|
});
|
|
});
|
|
*/
|