— Or maybe, like coding the original Netscape Navigator
— I want to make automated tests for spa I built with vuejs . can to direct me to best brower test framework to work for medium and large project ? #testing #browser
Message permanent page
— 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, .... ?