mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-27 04:17:51 -07: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
|
|
});
|
|
});
|
|
*/
|