From e1facddd5d0231faab46e7c180247e893fddb571 Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Thu, 21 Jan 2021 02:32:15 +0200 Subject: [PATCH] test(read-project-manifest): fix --- packages/read-project-manifest/test/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/read-project-manifest/test/index.ts b/packages/read-project-manifest/test/index.ts index 722c30e286..5898954d9c 100644 --- a/packages/read-project-manifest/test/index.ts +++ b/packages/read-project-manifest/test/index.ts @@ -150,7 +150,7 @@ test('fail on invalid YAML', async () => { expect(err).toBeTruthy() expect(err['code']).toBe('ERR_PNPM_YAML_PARSE') - expect(err.message).toMatch(/^missed comma between flow collection entries \(3:3\)/) + expect(err.message).toMatch(/^missed comma between flow collection entries at line 3, column 3:/) }) test('preserve trailing new line at the end of package.json', async () => {