| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /**
- * @jest-environment puppeteer
- * @flow
- */
- import { scroll, screenshot } from '../utils/puppeteer.js';
- it('shuld center the arrow', async () => {
- const page = await browser.newPage();
- await page.goto(`${TEST_URL}/modifiers/arrow/main.html`);
- await scroll(page, '.scroll3', 300);
- await scroll(page, '.scroll2', 200);
- await scroll(page, '.scroll1', 200);
- expect(await screenshot(page)).toMatchImageSnapshot();
- });
- it('should keep arrow within popper edges', async () => {
- const page = await browser.newPage();
- await page.goto(`${TEST_URL}/modifiers/arrow/main.html`);
- await scroll(page, '.scroll2', 400);
- await scroll(page, '.scroll3', 200);
- await scroll(page, '.scroll1', 450);
- expect(await screenshot(page)).toMatchImageSnapshot();
- });
- it('tether should activate at correct time', async () => {
- const page = await browser.newPage();
- await page.goto(`${TEST_URL}/modifiers/arrow/main.html`);
- await scroll(page, '.scroll2', 400);
- await scroll(page, '.scroll3', 200);
- await scroll(page, '.scroll1', 490);
- expect(await screenshot(page)).toMatchImageSnapshot();
- });
- it('should hide arrow if it is at the edge (min)', async () => {
- const page = await browser.newPage();
- await page.goto(`${TEST_URL}/modifiers/arrow/hide.html`);
- await scroll(page, '.scroll', 390);
- expect(await screenshot(page)).toMatchImageSnapshot();
- });
- it('should hide arrow if it is at the edge (max)', async () => {
- const page = await browser.newPage();
- await page.setViewport({ width: 800, height: 400 });
- await page.goto(`${TEST_URL}/modifiers/arrow/hide.html`);
- expect(await screenshot(page)).toMatchImageSnapshot();
- });
|