diff --git a/curriculum/test/test-challenges.js b/curriculum/test/test-challenges.js index 8b59c38fe48..312f8bd59f5 100644 --- a/curriculum/test/test-challenges.js +++ b/curriculum/test/test-challenges.js @@ -613,7 +613,9 @@ function replaceChallengeFilesContentsWithSolutions( ({ ext, name }) => ext === file.ext && file.name === name ); if (!matchingSolutionFile) { - throw Error(`No matching solution file found`); + throw Error( + `No matching solution file found for ${file.name}.${file.ext} - this likely means the seed code for the next step is missing the ${file.ext} code block.` + ); } return { ...file,