ember-introjs
Version:
An Ember Component for intro.js
14 lines (10 loc) • 429 B
JavaScript
import { module, test } from 'qunit';
import { visit, currentURL } from '@ember/test-helpers';
import { setupApplicationTest } from 'ember-qunit';
module('<%= friendlyTestName %>', function(hooks) {
setupApplicationTest(hooks);
test('visiting /<%= dasherizedModuleName %>', async function(assert) {
await visit('/<%= dasherizedModuleName %>');
assert.equal(currentURL(), '/<%= dasherizedModuleName %>');
});
});