1
0
mirror of synced 2024-12-02 09:36:01 +03:00
select2/control/test/test1.int.test.ts

10 lines
236 B
TypeScript
Raw Normal View History

2019-06-26 01:23:14 +03:00
describe('Google', () => {
beforeAll(async () => {
await page.goto('https://google.com');
});
it('should be titled "Google"', async () => {
await expect(page.title()).resolves.toMatch('Google');
});
});