mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -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 () {
|
before(async function () {
|
||||||
await localUtils.startGhost();
|
await localUtils.startGhost();
|
||||||
request = supertest.agent(config.get('url'));
|
request = supertest.agent(config.get('url'));
|
||||||
await localUtils.doAuth(request, 'users:extra', 'posts');
|
await localUtils.doAuth(request);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('download', function () {
|
it('download', function () {
|
||||||
|
|
Loading…
Add table
Reference in a new issue