Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #34 from BrightspaceUI/Fix_Linting_For_Tests
Browse files Browse the repository at this point in the history
More pre-conversion fixes
  • Loading branch information
svanherk authored Nov 14, 2018
2 parents b86f4f3 + ed87dd0 commit a23d7f7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/d2l-offscreen.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@

<script>
suite('d2l-offscreen', function() {
var offscreen, element;
setup(function() {
this.fixture = fixture('basic');
this.element = this.fixture.querySelector('d2l-offscreen');
offscreen = fixture('basic');
element = offscreen.querySelector('d2l-offscreen');
});

test('instantiating the element works', function() {
expect(this.element.is).to.equal('d2l-offscreen');
expect(element.is).to.equal('d2l-offscreen');
});
});
</script>
Expand Down

0 comments on commit a23d7f7

Please sign in to comment.