Skip to content

Commit 56665f2

Browse files
committed
add transform test suite
1 parent 2697975 commit 56665f2

File tree

3 files changed

+822
-1
lines changed

3 files changed

+822
-1
lines changed

tasks/util/constants.js

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ module.exports = {
5050

5151
pathToJasmineTests: path.join(pathToRoot, 'test/jasmine/tests'),
5252
pathToJasmineBundleTests: path.join(pathToRoot, 'test/jasmine/bundle_tests'),
53+
pathToJasmineTestAssets: path.join(pathToRoot, 'test/jasmine/assets'),
5354

5455
uglifyOptions: {
5556
fromString: true,

tasks/util/shortcut_paths.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ var constants = require('./constants');
1111
var shortcutsConfig = {
1212
'@src': constants.pathToSrc,
1313
'@lib': constants.pathToLib,
14-
'@mocks': constants.pathToTestImageMocks
14+
'@mocks': constants.pathToTestImageMocks,
15+
'@assets': constants.pathToJasmineTestAssets
1516
};
1617

1718
module.exports = transformTools.makeRequireTransform('requireTransform',

0 commit comments

Comments
 (0)