test('should allow vh, vw relative units', async ({ mount }) => {
  const resizable = await mount(<Resizable defaultSize={{ width: '100vw', height: '100vh' }} />);

  const divs = resizable.locator('div');
  const width = await resizable.evaluate(node => node.style.width);