0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fixed channels/webhooks tests

no issue

- i saw that the channels routing tests were sometimes not running in Travis

e.g. https://travis-ci.org/TryGhost/Ghost/jobs/311303939
> Channel Routes
> Unhandled rejection Error: select "webhooks".* from "webhooks" where "event" = 'subscriber.added' - SQLITE_ERROR: no such table: webhooks
This commit is contained in:
kirrg001 2017-12-04 14:54:57 +01:00 committed by Katharina Irrgang
parent 3e482254a3
commit e895b2c23b

View file

@ -24,6 +24,8 @@ describe('Subscriber: Routing', function () {
});
});
after(testUtils.teardown);
after(function () {
return ghostServer.stop();
});