refactor: monorepo+pnpm (removed husky)

This commit is contained in:
Andrew Bastin
2021-09-10 00:28:28 +05:30
parent 917550ff4d
commit b28f82a881
445 changed files with 81301 additions and 63752 deletions

View File

@@ -0,0 +1,34 @@
import jsonParse from "../jsonParse"
describe("jsonParse", () => {
test("parses without errors for valid JSON", () => {
const testJSON = JSON.stringify({
name: "hoppscotch",
url: "https://hoppscotch.io",
awesome: true,
when: 2019,
})
expect(() => jsonParse(testJSON)).not.toThrow()
})
test("throws error for invalid JSON", () => {
const testJSON = '{ "name": hopp "url": true }'
expect(() => jsonParse(testJSON)).toThrow()
})
test("thrown error has proper info fields", () => {
expect.assertions(3)
const testJSON = '{ "name": hopp "url": true }'
try {
jsonParse(testJSON)
} catch (e) {
expect(e).toHaveProperty("start")
expect(e).toHaveProperty("end")
expect(e).toHaveProperty("message")
}
})
})