(ranks: string[])
| 32 | } |
| 33 | |
| 34 | function expectAlphaRanks(ranks: string[]): void { |
| 35 | expect(ranks.every((rank) => alphaRankPattern.test(rank))).toBe(true); |
| 36 | } |
| 37 | |
| 38 | function createPlugin(frontmatterByPath: FrontmatterMap, sortOrderField = "tasknotes_manual_order") { |
| 39 | const processFrontMatter = jest.fn(async (file: TFile, updater: (frontmatter: any) => void) => { |
no outgoing calls
no test coverage detected