1
0
Fork 0
mirror of https://github.com/datashard/snapshot.git synced 2025-05-21 14:27:22 +00:00
snapshot/cypress/e2e/2.cy.js
2023-03-23 16:49:45 +01:00

27 lines
713 B
JavaScript

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