mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-23 23:30:35 +03:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
describe('Google', () => {
|
|
beforeAll(async () => {
|
|
await page.goto('https://google.com');
|
|
});
|
|
|
|
it('should be titled "Google"', async () => {
|
|
await expect(page.title()).resolves.toMatch('Google');
|
|
});
|
|
});
|