I'd like to start using
the mechanism described here for including Local Javascript Files -- I've been doing things with script tags, referencing the location of my javascript folder in Play, but would love to include the Javascript libraries in my tests.
I think I'm missing something, though. I've copied one of my .js files into my resources directory (scalajs/src/main/resources, right next to scalajs/src/main/scala, so I assume this is right?), and added the line:
jsDependencies += ProvidedJS / "jquery.manifest.js",
to my scalaJSSettings. It runs okay, but the errors I'm getting are consistent with that file simply not being loaded.
Any ideas of what else might be needed? The recipe sounds easy in the docs, but seems to just not be happening...