mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02: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();
|