mirror of
https://github.com/mnaoumov/obsidian-smart-rename.git
synced 2026-07-22 07:40:32 +00:00
13 lines
293 B
TypeScript
13 lines
293 B
TypeScript
import { getTempVault } from 'obsidian-integration-testing/vitest-global-setup';
|
|
import {
|
|
describe,
|
|
expect,
|
|
it
|
|
} from 'vitest';
|
|
|
|
describe('Smoke test', () => {
|
|
it('should load plugin on Desktop', () => {
|
|
const vault = getTempVault();
|
|
expect(vault.path).toBeTruthy();
|
|
});
|
|
});
|