import { test } from 'qunit'; import moduleForAcceptance from '../../tests/helpers/module-for-acceptance'; moduleForAcceptance('Behavior'); test('visiting /my-acceptance', function(assert) { visit('/'); click('.card-thingy'); andThen(function() { assert.equal(currentURL(), '/my-route'); }); }); test('clicking the button', function(assert) { visit('/'); click('.card-thingy button'); andThen(function() { assert.equal(currentURL(), '/my-other-route'); }); });