You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'No path provided, please specify which files your codemod should modify',
46
47
);
@@ -53,6 +54,7 @@ describe('main', () => {
53
54
try{
54
55
awaitmain([mockPath],{});
55
56
}catch(error){
57
+
// @ts-ignore
56
58
expect(error.message).toMatch(
57
59
'No transform provided, please specify a transform with either the --transform or --packages flags',
58
60
);
@@ -259,6 +261,7 @@ describe('main', () => {
259
261
extensions: 'js',
260
262
});
261
263
}catch(error){
264
+
// @ts-ignore
262
265
expect(error.message).toMatch(
263
266
'Invalid version provided to the --packages flag. Package mylib@NOT_SEMVER is missing version. Please try: "@[scope]/[package]@[version]" for example @mylib/avatar@10.0.0',
0 commit comments