snapshot/cypress/e2e/2.cy.js
2024-01-31 19:49:52 +01:00

23 lines
575 B
JavaScript

/* eslint-env mocha */
/* global cy */
describe("Random Describe", () => {
context("Random Context", () => {
it("Random It", () => {
cy.wrap(42).snapshot("Numbers");
cy.wrap("foo-bar").snapshot("Strings");
cy.wrap([1, 2, 3]).snapshot("Arrays");
});
// it("works with numbers", () => {
// console.log(cy.wrap(42))
// });
// it("works with strings", () => {
// console.log(cy.wrap("foo-bar"))
// });
// it("works with arrays", () => {
// console.log(cy.wrap([1, 2, 3]))
// });
});
});