UNPKG

ember-introjs

Version:
14 lines (10 loc) 429 B
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 %>'); }); });