mirror of
https://github.com/mnaoumov/obsidian-backlink-full-path.git
synced 2026-07-22 05:41:39 +00:00
- Replace obsidian-typings with @obsidian-typings/obsidian-public-latest - Update vitest config: replace ssr.noExternal with server.deps.inline - Add DOM.Iterable to tsconfig lib - Remove obsolete overrides (@antfu/utils, boolean, dompurify) - Upgrade dependencies via npm-check-updates
14 lines
380 B
TypeScript
14 lines
380 B
TypeScript
import { wrapCliTask } from 'obsidian-dev-utils/script-utils/cli-utils';
|
|
import { test } from 'obsidian-dev-utils/script-utils/test-runners/vitest';
|
|
|
|
await wrapCliTask(async () => {
|
|
await test({
|
|
projects: ['integration-tests:no-app']
|
|
});
|
|
await test({
|
|
projects: ['integration-tests:android']
|
|
});
|
|
await test({
|
|
projects: ['integration-tests:desktop']
|
|
});
|
|
});
|