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