refactoring of es6 test skeleton

This commit is contained in:
zadam
2020-06-03 17:28:57 +02:00
parent 99120be46d
commit 01a7af965c
4 changed files with 21 additions and 95 deletions

View File

@@ -0,0 +1,10 @@
import attributeParser from '../src/public/app/services/attribute_parser.js';
import {describe, it, expect, execute} from './mini_test.js';
describe("Lexer fulltext", () => {
it("simple label", () => {
expect(attributeParser.lexer("#label")).toEqual(["#label"]);
});
});
execute();