Skip to content

Commit 407fa49

Browse files
committed
add image server path to tasks/util/constants.js
1 parent 3bbe42d commit 407fa49

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tasks/util/constants.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ var path = require('path');
22

33
var pathToRoot = path.join(__dirname, '../../');
44
var pathToSrc = path.join(pathToRoot, 'src/');
5+
var pathToImageTest = path.join(pathToRoot, 'test/image');
56
var pathToDist = path.join(pathToRoot, 'dist/');
67
var pathToBuild = path.join(pathToRoot, 'build/');
78

@@ -27,6 +28,11 @@ module.exports = {
2728
pathToTestDashboardBundle: path.join(pathToBuild, 'test_dashboard-bundle.js'),
2829
pathToImageViewerBundle: path.join(pathToBuild, 'image_viewer-bundle.js'),
2930

31+
pathToTestImageMocks: path.join(pathToImageTest, 'mocks/'),
32+
pathToTestImageBaselines: path.join(pathToImageTest, 'baselines/'),
33+
pathToTestImages: path.join(pathToBuild, 'test_images/'),
34+
pathToTestImagesDiff: path.join(pathToBuild, 'test_images_diff/'),
35+
3036
uglifyOptions: {
3137
fromString: true,
3238
mangle: true,

0 commit comments

Comments
 (0)