0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Deleted empty route unit tests

This commit is contained in:
Kevin Ansfield 2019-01-22 15:05:14 +00:00
parent 8cc44cc0da
commit 0afe467a52
3 changed files with 0 additions and 47 deletions

View file

@ -1,18 +0,0 @@
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {setupTest} from 'ember-mocha';
describe('Unit: Route: subscribers', function () {
setupTest('route:subscribers', {
needs: [
'service:feature',
'service:notifications',
'service:session'
]
});
it('exists', function () {
let route = this.subject();
expect(route).to.be.ok;
});
});

View file

@ -1,15 +0,0 @@
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {setupTest} from 'ember-mocha';
describe('Unit: Route: subscribers/import', function () {
setupTest('route:subscribers/import', {
// Specify the other units that are required for this test.
needs: ['service:notifications']
});
it('exists', function () {
let route = this.subject();
expect(route).to.be.ok;
});
});

View file

@ -1,14 +0,0 @@
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {setupTest} from 'ember-mocha';
describe('Unit: Route: subscribers/new', function () {
setupTest('route:subscribers/new', {
needs: ['service:notifications']
});
it('exists', function () {
let route = this.subject();
expect(route).to.be.ok;
});
});