mirror of
https://github.com/mnaoumov/obsidian-smart-rename.git
synced 2026-07-22 07:40:32 +00:00
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']
|
|
});
|
|
});
|