/[sudobot]/branches/9.x-dev/tests/framework/polyfills/Promise.test.ts
ViewVC logotype

Annotation of /branches/9.x-dev/tests/framework/polyfills/Promise.test.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months, 1 week ago) by rakinar2
File MIME type: application/typescript
File size: 741 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 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