learn-co-students / js-templates-template-engines-lab-v-000

Other
1 stars 541 forks source link

Attempt To Load Missing JQuery Library #258

Open ecssiah opened 6 years ago

ecssiah commented 6 years ago

The index.html file for this lab attempts to load JQuery as a node_module, but it is not included with the lab in the node_modules directory. Even if it is installed with npm install jquery it appears that the tests will not recognize it.

ivillicana commented 6 years ago

Add jquery to the package.json file as a dependency before running learn in the terminal. Make sure to delete any package-lock.json file and node_modules folder before running the learn command.

image