/[sudobot]/trunk/tests/framework/polyfills/Promise.test.ts
ViewVC logotype

Contents of /trunk/tests/framework/polyfills/Promise.test.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (show annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 741 byte(s)
chore: add trunk
1 import { PromiseWithResolversReturn, promiseWithResolvers } from "@framework/polyfills/Promise";
2 import { describe, expect, it } from "vitest";
3
4 declare global {
5 interface PromiseConstructor {
6 withResolvers?<T>(): PromiseWithResolversReturn<T>;
7 }
8 }
9
10 describe("Promise polyfill", () => {
11 it("should polyfill Promise.withResolvers", async () => {
12 // Arrange
13 const originalPromise = Promise;
14
15 // Act
16 delete Promise.withResolvers;
17 const { promise, resolve, reject } = promiseWithResolvers<void>();
18
19 // Assert
20 expect(promise).toBeInstanceOf(originalPromise);
21 expect(resolve).toBeInstanceOf(Function);
22 expect(reject).toBeInstanceOf(Function);
23 });
24 });

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26