Skip to content

Commit

Permalink
Fix specs for addClasses function
Browse files Browse the repository at this point in the history
  • Loading branch information
demiazz committed May 7, 2017
1 parent 07a1349 commit 22fbc5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/css/add-classes.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe("addClasses", () => {
expect(subject.classList.contains("bar")).toBe(true);
});

it("returns `true` if any given class has been added to element", () => {
it("returns `false` if all given class hasn't been added to element", () => {
useFixture(`<div class="root foo bar"></div>`);

const subject = document.querySelector(".root");
Expand Down

0 comments on commit 22fbc5d

Please sign in to comment.