Sha256: 207e17a2a254a82d98b3ff7254e622d4acd91cbde940eb13dce80fbc3ff60858
Contents?: true
Size: 1.14 KB
Versions: 67
Compression:
Stored size: 1.14 KB
Contents
Execute the tests with: ```bash $ npm run test ``` Be sure your code follows best practices and coding styles, as other users do, with ESLint, a tool to perform static analysis to your code. Sometimes, tools like this save you some time detecting typos or silly mistakes in your ECMAScript code: ```bash $ npm run lint ``` Or do both at the same time: ```bash $ npm run lint-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: ```bash $ npm run watch ``` ## Making Your First ECMAScript 2015 Module Usually, tests on this track will load your implementation by importing it as an ECMAScript 2015 module: `import Bob from './bob.js';`. You just need to export your implementation from the referenced file, `bob.js`: ```javascript export default class Bob { hey(message) { // // Your solution to the exercise goes here // } } ``` You can find more information about modules in the [Babel documentation](https://babeljs.io/docs/learn-es2015/#modules). To make it easier to get started, there is a *skeleton* ECMAScript file in the directory for the first exercise.
Version data entries
67 entries across 67 versions & 1 rubygems