build: resolve Quantize dep issue, upgrade Cypress

This commit is contained in:
Lokesh Dhakar
2023-02-27 15:30:44 -08:00
parent ef231c7113
commit 20d3593422
18 changed files with 9764 additions and 8270 deletions

9
cypress/e2e/module.cy.js Normal file
View File

@@ -0,0 +1,9 @@
describe('es6 module', function() {
it('loads', function() {
cy.visit('http://localhost:8080/cypress/test-pages/es6-module.html');
cy.get('#result').should(($el) => {
const count = $el.text().split(',').length
expect(count).to.equal(3);
});
})
});