json-schema-library 11.0.0 → 11.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -302,7 +302,6 @@ describe("compileSchema : reduceNode", () => {
302
302
  }).reduceNode({ id: "second" });
303
303
  assert.deepEqual(node.schema, {
304
304
  type: "object",
305
- oneOfProperty: "id",
306
305
  properties: { id: { const: "second" }, one: { type: "number" } }
307
306
  });
308
307
  });
@@ -4,7 +4,7 @@ import { Draft, isJsonError, SchemaNode } from "./types";
4
4
  import { draft2020 } from "./draft2020";
5
5
  import sanitizeErrors from "./utils/sanitizeErrors";
6
6
 
7
- describe("compileSchema.validate", () => {
7
+ describe("compileSchema : validate", () => {
8
8
  // note: boolean schema is already thoroughly tested by spec
9
9
  describe("boolean schema", () => {
10
10
  it("should fail if root schema is false", () => {