Skip to content

Commit

Permalink
Fix prettier issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed Apr 10, 2020
1 parent 956085b commit 325ae33
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/qunit-dom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ declare global {
}
}

QUnit.assert.dom = function(
QUnit.assert.dom = function (
target?: string | Element | null,
rootElement?: Element
): DOMAssertions {
Expand Down
4 changes: 2 additions & 2 deletions tests/acceptance/qunit-dom-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
import { visit } from '@ember/test-helpers';

module('Acceptance | qunit-dom', function(hooks) {
module('Acceptance | qunit-dom', function (hooks) {
setupApplicationTest(hooks);

test('qunit-dom assertions are available', async function(assert) {
test('qunit-dom assertions are available', async function (assert) {
assert.ok(assert.dom, 'assert.dom is available');
assert.ok(assert.dom('.foo').includesText, 'assert.dom(...).includesText is available');

Expand Down

0 comments on commit 325ae33

Please sign in to comment.