Skip to content

Commit

Permalink
[test] Use strict mode as much as possible
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Dec 29, 2019
1 parent 5565b6f commit 4098f91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/material-ui-utils/src/elementAcceptingRef.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('elementAcceptingRef', () => {
}

before(() => {
mount = createMount();
mount = createMount({ strict: true });
});

after(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('elementTypeAcceptingRef', () => {
}

before(() => {
mount = createMount();
mount = createMount({ strict: true });
});

after(() => {
Expand Down

0 comments on commit 4098f91

Please sign in to comment.