JS: add tests for two libraries and js-file with two modules

This commit is contained in:
Michael Nedzelsky
2015-04-17 16:07:06 +03:00
parent 5daf79d2de
commit 3dce96e01c
11 changed files with 165 additions and 0 deletions
@@ -127,6 +127,16 @@ public class AntTaskJsTest extends AntTaskBaseTest {
doJsAntTest("jslib-example.js");
}
@Test
public void simpleWithStdlibAndTwoJsFilesAsLibraries() throws Exception {
doJsAntTest("jslib-example1.js", "jslib-example2.js");
}
@Test
public void simpleWithStdlibAndJsFilesWithTwoModulesAsLibrary() throws Exception {
doJsAntTest("jslib-example.js");
}
@Test
public void simpleWithMainFQArgs() throws Exception {
doJsAntTest();