Skip to content

Commit

Permalink
style: remove anti-lint condition
Browse files Browse the repository at this point in the history
  • Loading branch information
wuda-io committed Dec 17, 2024
1 parent ac02f9e commit c9ede58
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions spec/tests/modal/modalSpec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable no-undef */

describe('Modal:', () => {
const fixture = `<a class="btn tonal trigger waves-effect waves-light" href="#" onclick="modal1.showModal(); return false;">Modal</a>
<button class="btn btn-floating fixed-action-btn" onclick="modal1.showModal()"><i class="material-icons">menu</i></button>
Expand All @@ -17,9 +15,7 @@ describe('Modal:', () => {
</dialog>
`;

beforeEach(() => {
XloadHtml(fixture);
});
beforeEach(() => XloadHtml(fixture));
afterEach(() => XunloadFixtures());

describe('Modals', () => {
Expand Down

0 comments on commit c9ede58

Please sign in to comment.