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
12 lines
429 B
TypeScript
12 lines
429 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { readExpandedIndexCss } from '../helpers/read-expanded-css';
|
|
|
|
describe('plugin share confirmation styles', () => {
|
|
it('keeps the publish dialog footer away from the modal edge', () => {
|
|
const css = readExpandedIndexCss();
|
|
|
|
expect(css).toContain('.plugin-share-confirm .plugin-details-modal__foot');
|
|
expect(css).toContain('padding: 16px 24px 22px;');
|
|
});
|
|
});
|