generated from adobecom/milo-college
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.test.js
45 lines (40 loc) · 1.29 KB
/
utils.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { expect } from '@esm-bundle/chai';
import { setLibs } from '../../scripts/utils.js';
describe('Libs', () => {
it('Default Libs', () => {
const libs = setLibs('/libs');
expect(libs).to.equal('https://main--milo--adobecom.hlx.live/libs');
});
it('Does not support milolibs query param on prod', () => {
const location = {
hostname: 'business.adobe.com',
search: '?milolibs=foo',
};
const libs = setLibs('/libs', location);
expect(libs).to.equal('/libs');
});
it('Supports milolibs query param', () => {
const location = {
hostname: 'localhost',
search: '?milolibs=foo',
};
const libs = setLibs('/libs', location);
expect(libs).to.equal('https://foo--milo--adobecom.hlx.live/libs');
});
it('Supports local milolibs query param', () => {
const location = {
hostname: 'localhost',
search: '?milolibs=local',
};
const libs = setLibs('/libs', location);
expect(libs).to.equal('http://localhost:6456/libs');
});
it('Supports forked milolibs query param', () => {
const location = {
hostname: 'localhost',
search: '?milolibs=awesome--milo--forkedowner',
};
const libs = setLibs('/libs', location);
expect(libs).to.equal('https://awesome--milo--forkedowner.hlx.live/libs');
});
});