Learn how to test your WebAssembly exercises on Exercism
Execute the tests with:
npm run test
You can also run Jest in "watch" mode, which will re-run your tests automatically when you save changes to the code or test module:
npm run watch
The skip method instructs the test suite to not run a test, this function could be used also under the aliases: it.skip(name, fn)
or xit(name, fn)
or xtest(name, fn)
To enable users to concentrate on one test at a time and enable one by one as they evolve the solution.
Change xtest
to test
.
test("title cased phrases", () => {
expect(Acronyms.parse("Portable Network Graphics")).toEqual("PNG");
});