mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 13:48:40 +00:00
9 lines
246 B
JavaScript
9 lines
246 B
JavaScript
/* 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'));
|
|
});
|
|
});
|
|
*/ |