Calling visit() in acceptance test Ember 2.8.0 times out

259 Views Asked by At

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');
});
1

There are 1 best solutions below

0
On

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.