Skip to content
This repository was archived by the owner on Aug 24, 2022. It is now read-only.

Commit 54d8832

Browse files
committed
Drop jquery
1 parent 44bc125 commit 54d8832

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/acceptance/index-test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
import { visit } from '@ember/test-helpers';
22
import { module, test } from 'qunit';
33
import { setupApplicationTest } from 'ember-qunit';
4-
import $ from 'jquery';
54

65
module('Acceptance | Homepage', function(hooks) {
76
setupApplicationTest(hooks);
87

98
test('the configuration html comment should be removed', async function(assert) {
109
await visit('/');
1110

12-
let firstNode = $('.ember-view')[0].childNodes[0];
11+
let firstNode = document.querySelector('.ember-application').childNodes[0];
1312
assert.ok(firstNode.nodeType !== firstNode.COMMENT_NODE);
1413
});
1514
});

0 commit comments

Comments
 (0)