From fd651099ae1cba86a9a99df0659ee397deaa7794 Mon Sep 17 00:00:00 2001 From: JulissaDantes Date: Thu, 25 Jul 2024 16:26:14 -0400 Subject: [PATCH] chore: remove .only --- packages/runtime/test/runtime.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime/test/runtime.test.ts b/packages/runtime/test/runtime.test.ts index eaf69e08..8daf410c 100644 --- a/packages/runtime/test/runtime.test.ts +++ b/packages/runtime/test/runtime.test.ts @@ -975,7 +975,7 @@ describe('runtime', () => { expect(unsetRes.data).toMatchSnapshot() }, 30000) - test.only('runtime operations on models with immutable field', async () => { + test('runtime operations on models with immutable field', async () => { const postWithImmutableFieldSchema = ` interface TestInterface @createModel(description: "Test interface with immutable field") { testField: String @string(maxLength: 50) @immutable