1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-19 10:00:06 +00:00

style: lint

This commit is contained in:
2021-07-12 12:58:27 +02:00
parent b590a9f41b
commit 99afa6e7e4

View File

@@ -1,4 +1,4 @@
import { isValidJson } from "../../utils"
import { isValidJson } from '../../utils'
describe.only('jsonValidator', () => {
it('should not throw an error with an valid json', () => {
@@ -23,7 +23,7 @@ describe.only('jsonValidator', () => {
expect(() => {
try {
isValidJson(json)
} catch(err) {
} catch (err) {
throw new Error()
}
}).toThrowError