We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da5933f commit d4deb41Copy full SHA for d4deb41
src/embed/base.spec.ts
@@ -411,6 +411,18 @@ describe('Base TS Embed', () => {
411
});
412
expect(embedConfigInstance.getEmbedConfig().inPopup).toBe(false);
413
414
+ test('@P0 @SCAL-226935 embedConfig should contain correct value of customCSSUrl when added in init ', async () => {
415
+ index.init({
416
+ thoughtSpotHost,
417
+ authType: index.AuthType.None,
418
+ customizations: {
419
+ style: {
420
+ customCSSUrl: 'test.com',
421
+ },
422
423
+ });
424
+ expect(embedConfigInstance.getEmbedConfig().customizations.style.customCSSUrl).toEqual('test.com');
425
426
427
428
describe('Base without init', () => {
0 commit comments