Fixed select failures in regressions tests
no issue - a couple of regressions tests would repeatedly fail on CI. They would always follow tests that closed the Ghost server beforehand. - this commit doesn't close the server after those tests have completed, which is similar functionality to all other tests - the actual cause is unknown at this point, but I suspect it's some sort of race condition
This commit is contained in:
parent
1c6583ae03
commit
94d9536b62
@ -21,10 +21,6 @@ describe('Settings API (canary)', function () {
|
||||
});
|
||||
});
|
||||
|
||||
after(function () {
|
||||
return ghostServer.stop();
|
||||
});
|
||||
|
||||
it('Can\'t read core setting', function () {
|
||||
return request
|
||||
.get(localUtils.API.getApiQuery('settings/db_hash/'))
|
||||
|
@ -21,10 +21,6 @@ describe('Settings API (v2)', function () {
|
||||
});
|
||||
});
|
||||
|
||||
after(function () {
|
||||
return ghostServer.stop();
|
||||
});
|
||||
|
||||
it('Can\'t read core setting', function () {
|
||||
return request
|
||||
.get(localUtils.API.getApiQuery('settings/db_hash/'))
|
||||
|
@ -20,10 +20,6 @@ describe('Settings API', function () {
|
||||
});
|
||||
});
|
||||
|
||||
after(function () {
|
||||
return ghostServer.stop();
|
||||
});
|
||||
|
||||
it('Can\'t read core setting', function () {
|
||||
return request
|
||||
.get(localUtils.API.getApiQuery('settings/db_hash/'))
|
||||
|
Loading…
Reference in New Issue
Block a user