Guest User

Untitled

a guest
Jan 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. describe("List", function(){
  2. beforeEach(() => {
  3. this.list = document.getElementById("ul");
  4. });
  5. it("updates from a given collection", () => {
  6. expect(this.list.querySelectorAll("li").length).toBe(2);
  7. });
  8. }
Add Comment
Please, Sign In to add comment