Something went wrong on our end
Select Git revision
-
Volker Schukai authoredVolker Schukai authored
link.mjs 2.46 KiB
'use strict';
import chai from "chai"
import {Link} from "../../../../source/dom/resource/link.mjs";
import {DataUrl} from "../../../../source/types/dataurl.mjs";
import {ID} from "../../../../source/types/id.mjs";
import {chaiDom} from "../../../util/chai-dom.mjs";
import {cleanupDOMFromTesting, initMutationObserverForTesting} from "../../../util/cleanupdom.mjs";
import {initJSDOM} from "../../../util/jsdom.mjs";
let expect = chai.expect;
chai.use(chaiDom);
describe('Link', function () {
before(function (done) {
initJSDOM().then(() => {
done()
});
});
beforeEach(() => {
initMutationObserverForTesting()
})
afterEach(() => {
cleanupDOMFromTesting();
})
describe('Link()', function () {
this.timeout(5000);
it('connect().available()', function (done) {
const link = new Link({
href: new DataUrl('', 'text/css').toString(),
rel: 'stylesheet'
});
link.connect().available().then(() => {
done()
}).catch(e => done(e));
})
});
describe('External Link', () => {
this.timeout(5000);
let id = new ID('link').toString();
let link, url = 'https://alvine.io/main.min.css';
beforeEach(() => {
link = new Link({
href: url,
id: id,
rel: 'stylesheet'
});
});
it('append and remove Link ', (done) => {
expect(link.isConnected()).to.be.false;
link.connect().available().then(() => {