Advertisement
Guest User

Untitled

a guest
Oct 6th, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement