en.javascript.info/1-js/01-getting-started/04-variables/1-hello-variables/2/test.js
2021-06-09 07:07:18 +03:00

5 lines
No EOL
119 B
JavaScript

describe("Test", function() {
it(`user has a value: "John"`, function() {
expect(user).toEqual("John");
});
});