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

6 lines
No EOL
162 B
JavaScript

describe("Test", function() {
it(`user and admin have value "John"`, function() {
expect(user).toEqual("John");
expect(admin).toEqual("John");
});
});