41 lines
1010 B
TypeScript
41 lines
1010 B
TypeScript
/**
|
|
* Paths to the screenshots of the tests.
|
|
*/
|
|
const screenShotPaths = {
|
|
angle: {
|
|
angleDisplayedCorrectly: 'angleDisplayedCorrectly.png',
|
|
},
|
|
bidirectional: {
|
|
bidirectionalDisplayedCorrectly: 'bidirectionalDisplayedCorrectly.png',
|
|
},
|
|
circle: {
|
|
circleDisplayedCorrectly: 'circleDisplayedCorrectly.png',
|
|
},
|
|
cobbangle: {
|
|
cobbangleDisplayedCorrectly: 'cobbangleDisplayedCorrectly.png',
|
|
},
|
|
ellipse: {
|
|
ellipseDisplayedCorrectly: 'ellipseDisplayedCorrectly.png',
|
|
},
|
|
length: {
|
|
lengthDisplayedCorrectly: 'lengthDisplayedCorrectly.png',
|
|
},
|
|
livewire: {
|
|
livewireDisplayedCorrectly: 'livewireDisplayedCorrectly.png',
|
|
},
|
|
mpr: {
|
|
mprDisplayedCorrectly: 'mprDisplayedCorrectly.png',
|
|
},
|
|
probe: {
|
|
probeDisplayedCorrectly: 'probeDisplayedCorrectly.png',
|
|
},
|
|
rectangle: {
|
|
rectangleDisplayedCorrectly: 'rectangleDisplayedCorrectly.png',
|
|
},
|
|
spline: {
|
|
splineDisplayedCorrectly: 'splineDisplayedCorrectly.png',
|
|
},
|
|
};
|
|
|
|
export { screenShotPaths };
|