From 6b8c44824d18cdbfbc4edb2e57834f48f0d72223 Mon Sep 17 00:00:00 2001 From: douglance <4741454+douglance@users.noreply.github.com> Date: Fri, 16 Jan 2026 08:15:29 -0500 Subject: [PATCH] fix(ts-sdk): use relative import in serde test Change import from 'spacetimedb' to '../src' to match other test files. This fixes the test failing to resolve the package entry. --- crates/bindings-typescript/tests/serde.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bindings-typescript/tests/serde.test.ts b/crates/bindings-typescript/tests/serde.test.ts index 3131f7e0fc8..84f2c70f6e0 100644 --- a/crates/bindings-typescript/tests/serde.test.ts +++ b/crates/bindings-typescript/tests/serde.test.ts @@ -7,7 +7,7 @@ import { Identity, ScheduleAt, Uuid, -} from 'spacetimedb'; +} from '../src'; describe('it correctly serializes and deserializes algebraic values', () => { test('when it serializes and deserializes with a product type', () => {