Add jest and puppeteer for testing

This commit is contained in:
Peter Maquiran
2021-07-10 08:45:51 +01:00
parent 85a6d175dc
commit 451cfaa229
15 changed files with 7372 additions and 44 deletions
+18
View File
@@ -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);
});