Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. describe("someHelper", () => {
  2. let params = {
  3. some: "params"
  4. };
  5. describe("someHelperMethod", () => {
  6. it("Should do something", () => {
  7. let output = falafel.helpers.someHelper
  8. expect(output).toEqual("someOutput");
  9. });
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement