mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 13:26:08 +00:00
Add jest and puppeteer for testing
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
|
||||
import { element } from 'protractor';
|
||||
import { environment } from './../src/environments/environment'
|
||||
|
||||
describe('Puppeteer tests', () => {
|
||||
|
||||
beforeAll(async () => {
|
||||
// await page.goto('http://127.0.0.1:8080')
|
||||
})
|
||||
|
||||
test('login', async () => {
|
||||
|
||||
|
||||
expect(3 + 2).toBe(5);
|
||||
}, 30000);
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user