December 2016
Beginner to intermediate
334 pages
6h 25m
English
Before starting the actual writing of our unit tests, let's establish some rules. For each of our .js or .vue files, there will exist a corresponding test spec file, which will have the same name and a .spec.js extension. The structure of these specs will follow this approach:
describe method for each of the methods that is being testedit method for each of the cases we are describingSo, if we had a myBeautifulThing.js file and spec for it, it might look like the following:
// myBeautifulThing.js export myBeautifulMethod1() { return 'hello beauty' } export myBeautifulMethod2() { return 'hello again' } // myBeautifulThing.spec.js ...
Read now
Unlock full access