Skip to content

Commit

Permalink
tests: use shaft d.ts intead of shaft.js hard copy
Browse files Browse the repository at this point in the history
  • Loading branch information
frediana committed Feb 5, 2017
1 parent b62ceb6 commit 1fac6ae
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"build-test": "cp dist/shaft.js spec && tsc -p spec",
"build-test": "tsc -p spec",
"build-all": "npm run build && npm run build-test",
"test": "testem",
"test-ci": "testem ci -f testem.js && npm run coverall",
Expand Down
2 changes: 1 addition & 1 deletion spec/any.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
/// <reference path="shaft.js" />
/// <reference path="../shaft.d.ts" />

describe("#shaft.model Any field type", () => {

Expand Down
2 changes: 1 addition & 1 deletion spec/collection.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
/// <reference path="shaft.js" />
/// <reference path="../shaft.d.ts" />

describe("#shaft.collection", () => {
let Clubs, clubs;
Expand Down
2 changes: 1 addition & 1 deletion spec/defaults.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
/// <reference path="shaft.js" />
/// <reference path="../shaft.d.ts" />

describe("#defaults", () => {
let TestMessage, testMessage;
Expand Down
2 changes: 1 addition & 1 deletion spec/enumerations.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
/// <reference path="shaft.js" />
/// <reference path="../shaft.d.ts" />

describe("#shaft.enumeration", () => {
it("must be defined", () => {
Expand Down
2 changes: 1 addition & 1 deletion spec/models.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
/// <reference path="shaft.js" />
/// <reference path="../shaft.d.ts" />

describe("#shaft.model", () => {
describe(".get", () => {
Expand Down
2 changes: 1 addition & 1 deletion spec/nested.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
/// <reference path="shaft.js" />
/// <reference path="../shaft.d.ts" />

describe("#shaft.model", () => {
describe("Nested models", () => {
Expand Down
2 changes: 1 addition & 1 deletion spec/repeated.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
/// <reference path="shaft.js" />
/// <reference path="../shaft.d.ts" />

describe("#shaft.model repeated fields", () => {

Expand Down

0 comments on commit 1fac6ae

Please sign in to comment.