test sources was moved to '_infrastructure/tests' directory

This commit is contained in:
Diullei Gomes 2013-02-23 19:45:34 -03:00
parent f916e31d76
commit f3ec063234
12 changed files with 8 additions and 8 deletions

10
.gitignore vendored
View File

@ -22,8 +22,8 @@ Properties
*~
# test folder
!_tests/*
!_tests/*.js
!_tests/*/*.js
!_tests/*/*/*.js
!_tests/*/*/*/*.js
!_infrastructure/tests/*
!_infrastructure/tests/*.js
!_infrastructure/tests/*/*.js
!_infrastructure/tests/*/*/*.js
!_infrastructure/tests/*/*/*/*.js

View File

@ -485,7 +485,7 @@ var IO = (function () {
var cfg = {
root: '.',
pattern: /.\-tests\.ts/g,
tsc: 'node ./_tests/typescript_0.8.2/tsc.js ',
tsc: 'node ./_infrastructure/tests/typescript_0.8.2/tsc.js ',
exclude: {
'.git': true,
'.gitignore': true,

View File

@ -4,7 +4,7 @@
var cfg = {
root: '.',
pattern: /.\-tests\.ts/g,
tsc: 'node ./_tests/typescript_0.8.2/tsc.js ',
tsc: 'node ./_infrastructure/tests/typescript_0.8.2/tsc.js ',
exclude: {
'.git': true,
'.gitignore': true,

View File

@ -2,6 +2,6 @@
"name": "DefinitelyTyped",
"version": "0.0.0",
"scripts": {
"test": "node ./_tests/testRunner.js"
"test": "node ./_infrastructure/tests/testRunner.js"
}
}