Skip to content

Commit

Permalink
Explicitly reference the _references.d.ts file in all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Apr 22, 2015
1 parent 6c256d5 commit 18160b2
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions test/Core.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/Core.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion test/Core.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Iridium = require('../index');
/// <reference path="../_references.d.ts" />
import Iridium = require('../index');

class InheritedCore extends Iridium.Core {
theAnswer = 42;
Expand Down
1 change: 1 addition & 0 deletions test/Iridium.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/Iridium.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion test/Iridium.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Iridium = require('../index');
/// <reference path="../_references.d.ts" />
import Iridium = require('../index');

describe("Iridium",() => {
it("should expose the Core",() => {
Expand Down
3 changes: 2 additions & 1 deletion test/Model.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Iridium = require('../index');
/// <reference path="../_references.d.ts" />
import Iridium = require('../index');

interface TestDocument {
id?: string;
Expand Down

0 comments on commit 18160b2

Please sign in to comment.