Fixing type errors in tests

This commit is contained in:
Panayot Cankov
2016-12-16 17:31:48 +02:00
parent 745388c3da
commit 6feeb140e3
313 changed files with 1690 additions and 1655 deletions

View File

@@ -2,9 +2,9 @@
//var xmlModule = require("xml");
// << xml-module-snippet
import TKUnit = require("../TKUnit");
import xmlModule = require("xml");
import fs = require("file-system");
import * as TKUnit from "../TKUnit";
import * as xmlModule from "xml";
import * as fs from "file-system";
export var test_XmlParser_IsDefined = function () {
TKUnit.assert(typeof (xmlModule.XmlParser) !== "undefined", "Class XmlParser should be defined!");