From 4a82bb9096e3299f084375748540d465baae52f9 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Sat, 15 Jul 2023 13:00:15 -0400 Subject: [PATCH] Improve error message --- tests/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.ts b/tests/utils.ts index 27a4b8cd..9c0341d3 100644 --- a/tests/utils.ts +++ b/tests/utils.ts @@ -32,7 +32,7 @@ export async function fixture( assert( exists, - `Fixture file ${file} does not exist. To make this work, place a new file ${file} in the tests/fixtures/${scenario} directory` + `Fixture file '${file}' does not exist. To make this work, place a new file '${file}' in the 'tests/fixtures/${scenario}' directory. Checked the absolute path: '${fixtureFilePath}'.` ); let contents = await fs.readFile(fixtureFilePath);