Jest

From bibbleWiki
Revision as of 00:39, 21 May 2020 by Iwiseman (talk | contribs)
Jump to navigation Jump to search

Naming Test

__tests__/*.js
*.spec.js
*.test.js

Example Test

Describe is the suite, it is the test

describe("The question list ", ()=> {
    it ("should display a list of items", ()=> {
        expect(2+2).toEqual(4);
    })
    it ("should display a list of items", ()=> {
        expect(2+4).toEqual(6);
    })
})