Skip to content

Commit

Permalink
fixing test for nodejs v23
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandrRogov committed Feb 17, 2025
1 parent 055e0d3 commit 36d4538
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions dist/browser/esm/dynamics-web-api.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/cjs/dynamics-web-api.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/dynamics-web-api.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/dynamics-web-api.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/esm/dynamics-web-api.mjs.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tests/xhr.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ describe("xhr -", () => {
global.DWA_BROWSER = true;
//@ts-ignore
global.window = {
btoa: <any>base64.btoa,
btoa: base64.btoa as any,
atob: base64.atob,
crypto: <any>crypto.webcrypto,
crypto: crypto.webcrypto as any,
};
(global as any).XMLHttpRequest = sinon.useFakeXMLHttpRequest();

Expand Down

0 comments on commit 36d4538

Please sign in to comment.