From 981a645eb1ff3979bef231cb8a744f046ae4f282 Mon Sep 17 00:00:00 2001 From: Dor-bl Date: Mon, 13 Nov 2023 23:43:06 +0200 Subject: [PATCH] fix: npm typo --- test/integration/helpers/Npm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/helpers/Npm.cs b/test/integration/helpers/Npm.cs index 23247c67..001f3112 100644 --- a/test/integration/helpers/Npm.cs +++ b/test/integration/helpers/Npm.cs @@ -53,7 +53,7 @@ private static string RunCommand(string command, string arguments, int timeoutMi catch (Win32Exception ex) when (command.Contains("npm")) { Console.WriteLine(ex.Message); - throw new NpmNotFoundException($"mpm not found under {command}", ex); + throw new NpmNotFoundException($"npm not found under {command}", ex); } }