Archived
1
0

Update JSON parse error matcher

Looks like this text changed?
This commit is contained in:
Asher 2024-06-21 09:51:50 -08:00
parent d431c9cd9d
commit 26c763485b
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A

View File

@ -29,7 +29,7 @@ describe("settings", () => {
const settings = new SettingsProvider<CoderSettings>(pathToMockSettingsFile)
await settings.read()
// This happens when we can't parse a JSON (usually error in file)
expect(logger.warn).toHaveBeenCalledWith("Unexpected token t in JSON at position 29")
expect(logger.warn).toHaveBeenCalledWith(expect.stringMatching(/Unexpected token/))
})
})
describe("with invalid settings file path", () => {