start packaging
This commit is contained in:
parent
a19d789145
commit
6f60a3a1d5
98 changed files with 11162 additions and 11122 deletions
9
packages/eval/test/evaluate.test.mjs
Normal file
9
packages/eval/test/evaluate.test.mjs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
/* import { strict as assert } from 'assert';
|
||||
import evaluate from '../evaluate.mjs';
|
||||
|
||||
describe('evaluate', () => {
|
||||
it('Should evaluate simple double quote string', () => {
|
||||
assert.deepStrictEqual(evaluate('"c3"'), pure('c3'));
|
||||
});
|
||||
});
|
||||
*/
|
||||
8
packages/eval/test/shapeshifter.test.mjs
Normal file
8
packages/eval/test/shapeshifter.test.mjs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import { strict as assert } from 'assert';
|
||||
import shapeshifter from '../shapeshifter.mjs';
|
||||
|
||||
describe('shapeshifter', () => {
|
||||
it('Should shift simple double quote string', () => {
|
||||
assert.equal(shapeshifter('"c3"'), '(async()=>{return mini("c3").withMiniLocation([1,0,15],[1,4,19])})()');
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue