We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 851aa87 commit 61c4eb1Copy full SHA for 61c4eb1
cypress/e2e/webpack/bundle.spec.cy.ts
@@ -1,5 +1,8 @@
1
describe('webpack spec', () => {
2
it('passes', () => {
3
cy.visit('http://localhost:3000');
4
+ cy.request('/main.bundle.js').then((response) => {
5
+ cy.log('main.bundle.js content:', response.body);
6
+ });
7
});
8
0 commit comments