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

9 lines
No EOL
192 B
JavaScript

describe("Test", function() {
it("declares `admin`", function() {
admin; // error if not declared
});
it("declares `user`", function() {
user; // error if not declared
});
});