Нема описа

no-common-offset-parent.test.js 320B

12345678910111213
  1. /**
  2. * @jest-environment puppeteer
  3. * @flow
  4. */
  5. import { screenshot } from '../utils/puppeteer.js';
  6. it('should be positioned on the right', async () => {
  7. const page = await browser.newPage();
  8. await page.goto(`${TEST_URL}/no-common-offset-parent.html`);
  9. expect(await screenshot(page)).toMatchImageSnapshot();
  10. });