14 lines
257 B
TypeScript
14 lines
257 B
TypeScript
/**
|
|
* Paths to the screenshots of the tests.
|
|
*/
|
|
const screenShotPaths = {
|
|
mpr: {
|
|
mprDisplayedCorrectly: 'mprDisplayedCorrectly.png',
|
|
},
|
|
length: {
|
|
lengthDisplayedCorrectly: 'lengthDisplayedCorrectly.png',
|
|
},
|
|
};
|
|
|
|
export { screenShotPaths };
|