1
0
mirror of synced 2024-12-02 01:26:02 +03:00
select2/control/test/test1.int.test.ts
2019-06-25 15:23:14 -07:00

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