— Https://github.com/Floofies/Differentia.js/blob/master/spec/Spec.js
—
describe("two plus two", function () {
it("should equal four", function () {
expect(2+2).toBe(4);
});
});
Message permanent page
— Or
describe("two plus two",
() => it("should equal four",
() => expect(2+2).toBe(4)
)
);
— What about testcafe , cucumber, codeceptjs, .... ?
— I want to mimic the user interactions with my software, did you did this type of tests ?
— Oh, you mean that kind of testing.
— I use Circonus and Catchpoint