Guest User

Untitled

a guest
Nov 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. /// <reference path="../node_modules/@types/jest/index.d.ts" />
  2.  
  3. describe("Sample Unit Test", () => {
  4. describe("Simple Addition", () => {
  5. it("should be 10", (done) => {
  6. expect(6 + 4).toBe(10);
  7. done();
  8. });
  9. });
  10. });
Add Comment
Please, Sign In to add comment