We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed224cc commit 3b4702eCopy full SHA for 3b4702e
1 file changed
src/utilities/browser-utils.test.ts
@@ -7,7 +7,7 @@ describe("BrowserUtils", () => {
7
});
8
9
describe("isIE", () => {
10
- it("when wondow.document.documentMode is undefined, then returns false", () => {
+ it("when window.document.documentMode is undefined, then returns false", () => {
11
// Arrange
12
window.document.documentMode = undefined;
13
@@ -31,7 +31,7 @@ describe("BrowserUtils", () => {
31
32
33
describe("isNotIE", () => {
34
- it("when wondow.document.documentMode is undefined, then returns true", () => {
+ it("when window.document.documentMode is undefined, then returns true", () => {
35
36
37
0 commit comments