From e277496d6df84e7ad457a5ff1646d1b6659d4403 Mon Sep 17 00:00:00 2001 From: Jaya Krishna Date: Fri, 8 Dec 2023 23:06:44 +0530 Subject: [PATCH] fix tests by upgrading es-module-lexer version --- test/ownname.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/ownname.test.ts b/test/ownname.test.ts index b10a28ee..9a723052 100644 --- a/test/ownname.test.ts +++ b/test/ownname.test.ts @@ -9,11 +9,11 @@ const scenarios: Scenario[] = [ commands: ["jspm install app"], validationFn: async (files: Map) => { // Installing the own-name package "app" should result in the version of - // es-module-lexer in the import map being upgraded to 1.3.1, since it's a + // es-module-lexer in the import map being upgraded to 1.4.1, since it's a // transitive dependency of "./app.js". const map = JSON.parse(files.get("importmap.json")); assert( - map?.imports?.["es-module-lexer"]?.includes("es-module-lexer@1.3.1") + map?.imports?.["es-module-lexer"]?.includes("es-module-lexer@1.4.1") ); }, },