I have a simple acceptance script below which only checks for the currentURL. However whenever I run the test it only gives me timeout.
import { test } from 'qunit';
import moduleForAcceptance from 'rates-ui/tests/helpers/module-for-acceptance';
moduleForAcceptance('Acceptance | filter panel');
test('visiting /', function(assert) {
visit('/');
andThen(function() {
assert.equal(currentURL(), '/');
});
// assert.ok('ok', 'ok');
});
So the reason behind the time out is that there is an initializer which is required for one of my add-ons.
so for testing, I checked if the app is running on test environment. if it doesn't then I execute the initializer.