Skip to content

Instantly share code, notes, and snippets.

@THEozmic
Created July 27, 2018 19:00
Show Gist options
  • Save THEozmic/5e1dc8adecc44bbd3e264d3bb73a54da to your computer and use it in GitHub Desktop.
Save THEozmic/5e1dc8adecc44bbd3e264d3bb73a54da to your computer and use it in GitHub Desktop.
import { module, test } from 'qunit';
import { visit, currentURL } from '@ember/test-helpers';
import { setupApplicationTest } from 'ember-qunit';
module('Acceptance | simple form', function(hooks) {
setupApplicationTest(hooks);
test('visiting /simple-form', async function(assert) {
await visit('/simple-form');
assert.equal(currentURL(), '/simple-form');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment