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:
parent
1619a0f49a
commit
449c61bb1b
1 changed files with 1 additions and 1 deletions
|
@ -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 () {
|
||||
|
|
Loading…
Reference in a new issue