Ghost/ghost/admin/tests/integration/services/lazy-loader-test.js
Kevin Ansfield 1520122483 Refactored deprecated usage of setupTest* methods
no issue

- https://github.com/emberjs/ember-mocha/blob/master/docs/migration.md#upgrading-to-the-new-testing-apis
- deleted tests files which had no specific tests
- migrated unskipped component unit tests to integration tests
2019-05-13 15:31:32 +01:00

67 lines
1.9 KiB
JavaScript

import Pretender from 'pretender';
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {setupTest} from 'ember-mocha';
describe('Integration: Service: lazy-loader', function () {
setupTest();
let server;
let ghostPaths = {
adminRoot: '/assets/'
};
beforeEach(function () {
server = new Pretender();
});
afterEach(function () {
server.shutdown();
});
it('loads a script correctly and only once', async function () {
let subject = this.owner.lookup('service:lazy-loader');
subject.setProperties({
ghostPaths,
scriptPromises: {},
testing: false
});
// first load should add script element
await subject.loadScript('test', 'lazy-test.js')
.then(() => {})
.catch(() => {});
expect(
document.querySelectorAll('script[src="/assets/lazy-test.js"]').length,
'no of script tags on first load'
).to.equal(1);
// second load should not add another script element
await subject.loadScript('test', '/assets/lazy-test.js')
.then(() => { })
.catch(() => { });
expect(
document.querySelectorAll('script[src="/assets/lazy-test.js"]').length,
'no of script tags on second load'
).to.equal(1);
});
it('loads styles correctly', function () {
let subject = this.owner.lookup('service:lazy-loader');
subject.setProperties({
ghostPaths,
testing: false
});
return subject.loadStyle('testing', 'style.css').catch(() => {
// we add a catch handler here because `/assets/style.css` doesn't exist
expect(document.querySelectorAll('#testing-styles').length).to.equal(1);
expect(document.querySelector('#testing-styles').getAttribute('href')).to.equal('/assets/style.css');
});
});
});