Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 12:00:47 +08:00

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;');
});
});