Skip to content

Commit

Permalink
set test timeout (#1610)
Browse files Browse the repository at this point in the history
  • Loading branch information
epoberezkin committed May 14, 2021
1 parent 4322e7b commit 67e1bd3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spec/jtd-timestamps.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import _AjvJTD from "./ajv_jtd"
import assert = require("assert")
import type {JTDOptions, JTDSchemaType} from "../dist/jtd"

describe("JTD timestamps", () => {
describe("JTD timestamps", function () {
this.timeout(10000)

describe("validation", () => {
it("should accept dates or strings by default", () => {
testTimestamp({}, {Date: true, datetime: true, date: false})
Expand Down

0 comments on commit 67e1bd3

Please sign in to comment.