Skip to content

Commit

Permalink
chore: fix ESLint override glob, remove console.log from test (#8542)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan authored Jan 21, 2025
1 parent c590b82 commit 90cfbd7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
}
},
{
"files": ["scripts/**/*.js", "*.js"],
"files": ["scripts/**/*.js", "*.config.js", "wtr-utils.js"],
"rules": {
"@typescript-eslint/no-require-imports": "off",
"no-console": "off"
Expand Down
1 change: 0 additions & 1 deletion test/integration/notification-overlay.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ describe('notification and overlays', () => {
const close = document.createElement('button');
close.textContent = 'Close and show notification';
close.addEventListener('click', () => {
console.log('close and show');
notification.opened = true;
dialog2.opened = false;
});
Expand Down

0 comments on commit 90cfbd7

Please sign in to comment.