我有一堆我想测试的 javascript 文件,位于 src/main/webapp/js,但是当我尝试在命令行上构建时,由于缺少库文件,我得到了一堆错误我的每个源脚本都依赖。我试图将它们包含在“sourceIncludes”标签中,但这似乎无济于事。但是,我可以一次将它们全部放在“preloadSources”标签中,但我宁愿不这样做。
此外,我的一些源文件具有与 DOM 交互的函数,包括 .html 文件,其中包含这些函数所需的元素:
“net.sourceforge.htmlunit.corejs.javascript.EcmaError:ReferenceError:“XML”未定义”
我的 pom.xml 下面:
<plugin>
<groupId>com.github.searls</groupId>
<artifactId>jasmine-maven-plugin</artifactId>
<version>1.1.0</version>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<jsSrcDir>src/main/webapp/js</jsSrcDir>
<jsTestSrcDir>src/test/javascript/js</jsTestSrcDir>
<sourceIncludes>
<include>src/main/webapp/js/lib/**/*.js</include>
<include>**/*.js</include>
</sourceIncludes>
<preloadSources>
<preloadSource>src/main/webapp/js/lib/jquery/jquery-1.7.2.js</preloadSource>
</preloadSources>
</configuration>
</plugin>