71 lines
1.9 KiB
TypeScript
71 lines
1.9 KiB
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',
|
|
},
|
|
threeDFourUp: {
|
|
threeDFourUpDisplayedCorrectly: 'threeDFourUpDisplayedCorrectly.png',
|
|
},
|
|
threeDMain: {
|
|
threeDMainDisplayedCorrectly: 'threeDMainDisplayedCorrectly.png',
|
|
},
|
|
threeDPrimary: {
|
|
threeDPrimaryDisplayedCorrectly: 'threeDPrimaryDisplayedCorrectly.png',
|
|
},
|
|
threeDOnly: {
|
|
threeDOnlyDisplayedCorrectly: 'threeDOnlyDisplayedCorrectly.png',
|
|
},
|
|
axialPrimary: {
|
|
axialPrimaryDisplayedCorrectly: 'axialPrimaryDisplayedCorrectly.png',
|
|
},
|
|
probe: {
|
|
probeDisplayedCorrectly: 'probeDisplayedCorrectly.png',
|
|
},
|
|
rectangle: {
|
|
rectangleDisplayedCorrectly: 'rectangleDisplayedCorrectly.png',
|
|
},
|
|
spline: {
|
|
splineDisplayedCorrectly: 'splineDisplayedCorrectly.png',
|
|
},
|
|
dicomTagBrowser: {
|
|
dicomTagBrowserDisplayedCorrectly: 'dicomTagBrowserDisplayedCorrectly.png',
|
|
},
|
|
rotateRight: {
|
|
rotateRightDisplayedCorrectly: 'rotateRightDisplayedCorrectly.png',
|
|
},
|
|
invert: {
|
|
invertDisplayedCorrectly: 'invertDisplayedCorrectly.png',
|
|
},
|
|
flipHorizontal: {
|
|
flipHorizontalDisplayedCorrectly: 'flipHorizontalDisplayedCorrectly.png',
|
|
},
|
|
reset: {
|
|
resetDisplayedCorrectly: 'resetDisplayedCorrectly.png',
|
|
},
|
|
};
|
|
|
|
export { screenShotPaths };
|