minor fixes
This commit is contained in:
parent
5a024624af
commit
d20a6e3d5e
33 changed files with 357 additions and 395 deletions
|
@ -0,0 +1,4 @@
|
|||
let user;
|
||||
let admin;
|
||||
|
||||
user = "John";
|
|
@ -0,0 +1 @@
|
|||
Assign the value `"John"` to `user`.
|
|
@ -0,0 +1,5 @@
|
|||
describe("Test", function() {
|
||||
it(`user has a value: "John"`, function() {
|
||||
expect(user).toEqual("John");
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue