070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
26 lines
1.1 KiB
TypeScript
26 lines
1.1 KiB
TypeScript
import postcss, { type Rule } from 'postcss';
|
|
import { describe, expect, it } from 'vitest';
|
|
import { readExpandedIndexCss } from '../helpers/read-expanded-css';
|
|
|
|
describe('plugin info preview pane styles', () => {
|
|
it('keeps plugin preview sidebar content away from the pane edges', () => {
|
|
const css = readExpandedIndexCss();
|
|
const root = postcss.parse(css, { from: 'src/index.css' });
|
|
const topLevelRules = root.nodes.filter(
|
|
(node): node is Rule => node.type === 'rule',
|
|
);
|
|
const topLevelSelectors = topLevelRules.map((rule) => rule.selector);
|
|
|
|
expect(css).toContain('.ds-modal-sidebar');
|
|
expect(css).toContain('.ds-modal-sidebar-body');
|
|
expect(css).toContain('scrollbar-gutter: stable;');
|
|
expect(topLevelSelectors).toContain('.plugin-info-pane');
|
|
expect(css).toContain('padding: 22px 28px 28px 32px;');
|
|
expect(topLevelSelectors).toContain('.plugin-design-sidebar__spec');
|
|
expect(css).toContain('padding: 18px 28px 28px 32px;');
|
|
expect(topLevelSelectors).not.toContain(
|
|
'.plugin-details-modal__stage-num .plugin-info-pane',
|
|
);
|
|
});
|
|
});
|