Skip to content

Commit f481296

Browse files
committed
Renamed tests directory
1 parent b6ad665 commit f481296

File tree

262 files changed

+11520
-113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

262 files changed

+11520
-113
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# compiled output
44
/dist
55
/tmp
6-
/tests/out
6+
/test/out
77
.nyc_output/
88

99
# dependencies

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
"copy:static": "copyfiles --up 1 ./src/**/*.hbs ./dist/",
1111
"copy:plugin": "copyfiles package.json './dist/**/*' node_modules/typedoc-plugin-markdown/",
1212
"mocks": "npm run mocks:github && npm run mocks:bitbucket && npm run mocks:gitbook",
13-
"mocks:github": "typedoc ./tests/src --out ./tests/out/github --theme markdown --gitRevision master --media tests/src/media/ --includes tests/src/inc/",
14-
"mocks:bitbucket": "typedoc ./tests/src --out ./tests/out/bitbucket --theme markdown --gitRevision master --media tests/src/media/ --includes tests/src/inc/ --excludePrivate --readme none --mode file --mdFlavour bitbucket --mdSourceRepo 'https://bitbucket.org/owner/repository_name'",
15-
"mocks:gitbook": "typedoc ./tests/src --out ./tests/out/gitbook --theme markdown --gitRevision master --mdFlavour gitbook --media tests/src/media/ --includes tests/src/inc/",
16-
"mocks:html": "typedoc --out tests/out/html tests --media tests/src/media/ --includes tests/src/inc/",
13+
"mocks:github": "typedoc ./test/src --out ./tests/out/github --theme markdown --gitRevision master --media test/src/media/ --includes tests/src/inc/",
14+
"mocks:bitbucket": "typedoc ./test/src --out ./tests/out/bitbucket --theme markdown --gitRevision master --media test/src/media/ --includes test/src/inc/ --excludePrivate --readme none --mode file --mdFlavour bitbucket --mdSourceRepo 'https://bitbucket.org/owner/repository_name'",
15+
"mocks:gitbook": "typedoc ./test/src --out ./tests/out/gitbook --theme markdown --gitRevision master --mdFlavour gitbook --media test/src/media/ --includes test/src/inc/",
16+
"mocks:html": "typedoc --out test/out/html tests --media tests/src/media/ --includes test/src/inc/",
1717
"lint": "tslint --project ./src/tsconfig.json",
1818
"prepare": "rm -rf dist && tsc -p ./src/tsconfig.json && npm run copy:static",
1919
"prepublishOnly": "npm run prepare && npm run lint && npm run test",
2020
"pretest": "rm -rf tests/out && rm -rf node_modules/typedoc-plugin-markdown && npm run copy:plugin && npm run mocks",
21-
"test": "mocha tests/index.js"
21+
"test": "mocha test/test.js"
2222
},
2323
"author": "Thomas Grey",
2424
"license": "MIT",
@@ -59,4 +59,4 @@
5959
"typescript"
6060
]
6161
}
62-
}
62+
}

0 commit comments

Comments
 (0)