diff --git a/test/regression/api/canary/admin/webhooks_spec.js b/test/regression/api/canary/admin/webhooks_spec.js index fb98ac3a32..988d2a658f 100644 --- a/test/regression/api/canary/admin/webhooks_spec.js +++ b/test/regression/api/canary/admin/webhooks_spec.js @@ -10,14 +10,12 @@ describe('Webhooks API (canary)', function () { let request; const API_VERSION = 'canary'; - before(function () { - return ghost() - .then(function () { - request = supertest.agent(config.get('url')); - }) - .then(function () { - return localUtils.doAuth(request, 'api_keys', 'webhooks'); - }); + before(async function () { + await ghost(); + + request = supertest.agent(config.get('url')); + + await localUtils.doAuth(request, 'integrations', 'api_keys', 'webhooks'); }); it('Can create a webhook using integration', function () { diff --git a/test/regression/api/v2/admin/webhooks_spec.js b/test/regression/api/v2/admin/webhooks_spec.js index 767e915d41..60ca90c103 100644 --- a/test/regression/api/v2/admin/webhooks_spec.js +++ b/test/regression/api/v2/admin/webhooks_spec.js @@ -10,14 +10,12 @@ describe('Webhooks API (v2)', function () { let request; const API_VERSION = 'v2'; - before(function () { - return ghost() - .then(function () { - request = supertest.agent(config.get('url')); - }) - .then(function () { - return localUtils.doAuth(request, 'api_keys', 'webhooks'); - }); + before(async function () { + await ghost(); + + request = supertest.agent(config.get('url')); + + await localUtils.doAuth(request, 'integrations', 'api_keys', 'webhooks'); }); it('Can create a webhook using integration', function () { diff --git a/test/regression/api/v3/admin/webhooks_spec.js b/test/regression/api/v3/admin/webhooks_spec.js index c992ad670c..60a663656d 100644 --- a/test/regression/api/v3/admin/webhooks_spec.js +++ b/test/regression/api/v3/admin/webhooks_spec.js @@ -10,14 +10,12 @@ describe('Webhooks API (v3)', function () { let request; const API_VERSION = 'v3'; - before(function () { - return ghost() - .then(function () { - request = supertest.agent(config.get('url')); - }) - .then(function () { - return localUtils.doAuth(request, 'api_keys', 'webhooks'); - }); + before(async function () { + await ghost(); + + request = supertest.agent(config.get('url')); + + await localUtils.doAuth(request, 'integrations', 'api_keys', 'webhooks'); }); it('Can create a webhook using integration', function () {