mirror of
https://github.com/dsprenkels/backpack.git
synced 2026-05-04 03:00:05 -04:00
8 lines
259 B
TypeScript
8 lines
259 B
TypeScript
import * as filter from './filterspec'
|
|
import { DEFAULT_BRINGLIST_TEMPLATE } from './template'
|
|
import { assert, expect, test } from 'vitest'
|
|
|
|
test("bringlist parses", () => {
|
|
expect(() => filter.parseDatabase(DEFAULT_BRINGLIST_TEMPLATE)).not.toThrow()
|
|
})
|