@fgv/ts-utils-jest
Version:
Custom matchers for ts-utils result class
16 lines • 559 B
JavaScript
import * as Resolver from '../utils/snapshotResolver';
const CLI_SNAPSHOT_FOLDER = '__ide__';
function resolveSnapshotPath(testPath, ext) {
return Resolver.resolveSnapshotPath(testPath, ext, CLI_SNAPSHOT_FOLDER);
}
function resolveTestPath(snapshotPath, ext) {
return Resolver.resolveTestPath(snapshotPath, ext);
}
const testPathForConsistencyCheck = Resolver.testPathForConsistencyCheck;
module.exports = {
resolveSnapshotPath,
resolveTestPath,
testPathForConsistencyCheck
};
export default module.exports;
//# sourceMappingURL=ide.js.map