[specs] Wait longer after tests using models finish
This commit is contained in:
parent
7b655eee61
commit
e64ceab8c4
|
@ -36,6 +36,9 @@ test('it adds an env var on submit', function(assert) {
|
|||
assert.equal(envVar.get('value'), 'bar', 'value should be set for the env var');
|
||||
assert.equal(envVar.get('repo.slug'), 'travis-ci/travis-web', 'repo should be set for the env var');
|
||||
assert.ok(!envVar.get('public'), 'env var should be private');
|
||||
|
||||
var done = assert.async();
|
||||
setTimeout(function() { done(); }, 500);
|
||||
});
|
||||
|
||||
test('it shows an error if no name is present', function(assert) {
|
||||
|
@ -86,4 +89,7 @@ test('it adds a public env var on submit', function(assert) {
|
|||
assert.equal(envVar.get('value'), 'bar', 'value should be set for the env var');
|
||||
assert.equal(envVar.get('repo.slug'), 'travis-ci/travis-web', 'repo should be set for the env var');
|
||||
assert.ok(envVar.get('public'), 'env var should be public');
|
||||
|
||||
var done = assert.async();
|
||||
setTimeout(function() { done(); }, 500);
|
||||
});
|
||||
|
|
|
@ -37,6 +37,8 @@ test('it adds an ssh key on submit', function(assert) {
|
|||
assert.equal(sshKey.get('value'), 'bar', 'value should be set');
|
||||
assert.equal(sshKey.get('id'), 1, 'ssh key id should still be repo id');
|
||||
|
||||
var done = assert.async();
|
||||
setTimeout(function() { done(); }, 500);
|
||||
});
|
||||
|
||||
|
||||
|
|
|
@ -60,8 +60,8 @@ test('it deletes a custom key if permissions are right', function(assert) {
|
|||
assert.ok(key.get('isDeleted'), 'key should be deleted');
|
||||
|
||||
// we don't deal with saving records for now, so at least wait till it's done
|
||||
stop();
|
||||
setTimeout(function() { start(); }, 50);
|
||||
var done = assert.async();
|
||||
setTimeout(function() { done(); }, 500);
|
||||
});
|
||||
|
||||
test('it does not delete the custom key if permissions are insufficient', function(assert) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user