feat: bundle workflow support (#7337)

This commit is contained in:
Manol Donev
2019-06-20 15:58:36 +03:00
committed by Vasil Chimev
parent 5f9eabdf17
commit ecd9fc3e9d
1636 changed files with 19445 additions and 1619 deletions

View File

@@ -2,7 +2,7 @@
//var xmlModule = require("tns-core-modules/xml");
// << xml-module-snippet
import * as TKUnit from "../TKUnit";
import * as TKUnit from "../tk-unit";
import * as xmlModule from "tns-core-modules/xml";
import * as fs from "tns-core-modules/file-system";
import * as builder from "tns-core-modules/ui/builder";
@@ -185,8 +185,7 @@ export var test_XmlParser_NamespacesTest = function () {
};
export function test_MultiParserTemplate() {
const file = fs.File.fromPath(fs.path.join(__dirname, "itemTemplates.xml"));
const xml = file.readTextSync();
const xml = global.loadModule("xml-parser-tests/itemTemplates.xml")
const view: any = builder.parse(xml);
TKUnit.assertNotNull(view.items)