From 455574037f5f5040a25830b5bd12b6f47534ca47 Mon Sep 17 00:00:00 2001 From: Luke Alvoeiro Date: Tue, 28 May 2024 17:15:48 -0700 Subject: [PATCH] add unit test to new integration dir --- .../schema-no-file-descriptor-test.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 integration/schema-no-file-descriptor/schema-no-file-descriptor-test.ts diff --git a/integration/schema-no-file-descriptor/schema-no-file-descriptor-test.ts b/integration/schema-no-file-descriptor/schema-no-file-descriptor-test.ts new file mode 100644 index 000000000..0e638895e --- /dev/null +++ b/integration/schema-no-file-descriptor/schema-no-file-descriptor-test.ts @@ -0,0 +1,8 @@ +import { protoMetadata } from "./const-enum"; + +describe("schema-no-file-descriptor", () => { + test("the property doesn't exist", () => { + expect(protoMetadata).not.toHaveProperty("fileDescriptor"); + expect(protoMetadata).toHaveProperty("references"); + }); +});