SHOW:
|
|
- or go back to the newest paste.
| 1 | /// <reference path="Test.ts" /> | |
| 2 | /// <reference path="require.d.ts" /> | |
| 3 | ||
| 4 | declare var describe, it, expect; | |
| 5 | ||
| 6 | import SystemModule = require("./Test");
| |
| 7 | ||
| 8 | describe("Tests for System.Collections.Generic.List<T>", () =>
| |
| 9 | {
| |
| 10 | it("should return 3 elements when calling count().", () =>
| |
| 11 | {
| |
| 12 | console.log(SystemModule); | |
| 13 | ||
| 14 | //var myList = new SystemModule.Collections.Generic.List<string>(); | |
| 15 | }); | |
| 16 | - | //expect(myList.count()).toBe(3); |
| 16 | + |