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.
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.
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 withnpm install jquery
it appears that the tests will not recognize it.