mirror of
https://github.com/zadam/trilium.git
synced 2024-11-15 04:05:19 +08:00
24 lines
724 B
JavaScript
24 lines
724 B
JavaScript
const handleParens = require('../../src/services/search/services/handle_parens.js');
|
|
|
|
describe("Parens handler", () => {
|
|
it("handles parens", () => {
|
|
const input = ["(", "hello", ")", "and", "(", "(", "pick", "one", ")", "and", "another", ")"]
|
|
.map(token => ({token}));
|
|
|
|
expect(handleParens(input))
|
|
.toEqual([
|
|
[
|
|
{token: "hello"}
|
|
],
|
|
{token: "and"},
|
|
[
|
|
[
|
|
{token: "pick"},
|
|
{token: "one"}
|
|
],
|
|
{token: "and"},
|
|
{token: "another"}
|
|
]
|
|
]);
|
|
});
|
|
});
|