EmberJS の新機能。私はいくつかのテストを行おうとしています..しかし、いくつかの基本的な問題があるようです. Ember サイトから直接取得した受け入れテストを生成しただけです。
import { test } from 'qunit';
import moduleForAcceptance from 'ssd-admin-ember/tests/helpers/module-for-acceptance';
moduleForAcceptance('Acceptance | login');
test('visiting /login', function(assert) {
visit('/xxxlogin');
andThen(function() {
assert.equal(currentURL(), '/abclogin');
});
});
次に、次のように実行します。
ember test --filter 'acceptance/login-test'
これにより...
ok 1 PhantomJS 2.1 - JSHint | acceptance/login-test.js: should pass jshint
1..1
# tests 1
# pass 1
# skip 0
# fail 0
# ok
これはどのように通過できますか?xxxloginルートなどはありません。
私は何か間違ったことをしているに違いありません(明らかに)。
前もって感謝します...