mirror of
https://github.com/zadam/trilium.git
synced 2025-12-08 08:24:24 +01:00
10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
import { deferred } from "./utils.js";
|
|
|
|
describe("#deferred", () => {
|
|
it("should return a promise", () => {
|
|
const result = deferred();
|
|
expect(result).toBeInstanceOf(Promise);
|
|
});
|
|
// TriliumNextTODO: Add further tests!
|
|
});
|