Skip to content

Commit 36d4538

Browse files
fixing test for nodejs v23
1 parent 055e0d3 commit 36d4538

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

dist/browser/esm/dynamics-web-api.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cjs/dynamics-web-api.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dynamics-web-api.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dynamics-web-api.min.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/dynamics-web-api.mjs.map

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

tests/xhr.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ describe("xhr -", () => {
3232
global.DWA_BROWSER = true;
3333
//@ts-ignore
3434
global.window = {
35-
btoa: <any>base64.btoa,
35+
btoa: base64.btoa as any,
3636
atob: base64.atob,
37-
crypto: <any>crypto.webcrypto,
37+
crypto: crypto.webcrypto as any,
3838
};
3939
(global as any).XMLHttpRequest = sinon.useFakeXMLHttpRequest();
4040

0 commit comments

Comments
 (0)