0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Removed unnecessary fixture setup in redirects e2e test

refs https://github.com/TryGhost/Toolbox/issues/139

- There's no need for extra users neither extra posts for this suite to run. Less fixtures to be setup - quicker the test execution
This commit is contained in:
Naz 2021-11-29 17:53:33 +04:00
parent 1619a0f49a
commit 449c61bb1b

View file

@ -11,7 +11,7 @@ describe('Redirects API', function () {
before(async function () {
await localUtils.startGhost();
request = supertest.agent(config.get('url'));
await localUtils.doAuth(request, 'users:extra', 'posts');
await localUtils.doAuth(request);
});
it('download', function () {