mirror of
https://github.com/MisskeyIO/misskey
synced 2024-11-27 22:38:30 +09:00
16 lines
246 B
JavaScript
16 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
|
|
});
|
|
});
|
|
*/
|