@prezly/theme-kit-core
Version:
Data layer and utility library for developing Prezly themes with JavaScript
8 lines • 309 B
JavaScript
import { ASSETS_CDN_URL } from "./constants.mjs";
import { getCdnUrl } from "./uploads.mjs";
describe('getCdnUrl', () => {
it('generates correct asset URL with uuid passed to it', () => {
var uuid = 'foo-bar';
expect(getCdnUrl(uuid)).toBe("".concat(ASSETS_CDN_URL, "/").concat(uuid, "/"));
});
});