summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/paletx/plx-tooltip/plx-tooltip-config.spec.ts
blob: 4a19dd170a421429c3e7c3ab124f569d7d5fe510 (plain)
1
2
3
4
5
6
7
8
9
10
11
import {PlxTooltipConfig} from './plx-tooltip-config';

describe('plx-tooltip-config', () => {
    it('should have sensible default values', () => {
        const config = new PlxTooltipConfig();

        expect(config.placement).toBe('top');
        expect(config.triggers).toBe('hover');
        expect(config.container).toBeUndefined();
    });
});