Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions smoketests/tests/quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,10 @@ class TypeScript(Rust):

def server_postprocess(self, server_path: Path):
build_typescript_sdk()
# We already have spacetimedb as a depencency, but it's expecting to fetch from npm.
# If we don't uninstall before installing, pnpm can panic because it can't find
# the specified version on npm (even though we're about to override it anyway).
pnpm("uninstall", 'spacetimedb', cwd=server_path)
pnpm("install", TYPESCRIPT_BINDINGS_PATH, cwd=server_path)

def test_quickstart(self):
Expand Down
Loading