mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
11 lines
300 B
JavaScript
11 lines
300 B
JavaScript
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();
|