mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
18 lines
281 B
TypeScript
18 lines
281 B
TypeScript
|
|
import { environment } from './../src/environments/environment'
|
|
|
|
describe('Puppeteer tests', () => {
|
|
|
|
beforeAll(async () => {
|
|
// await page.goto(process.env.PUPPETEER_HOST)
|
|
})
|
|
|
|
test('login', async () => {
|
|
|
|
|
|
expect(3 + 2).toBe(5);
|
|
}, 30000);
|
|
|
|
});
|
|
|