Skip to content

Commit

Permalink
Update fixtures (#731)
Browse files Browse the repository at this point in the history
  • Loading branch information
adhityamamallan authored Nov 19, 2024
1 parent 6fbbecc commit 976e514
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "next start -p ${CADENCE_WEB_PORT-8088}",
"lint": "next lint",
"typecheck": "tsc --noemit",
"install-idl": "mkdir -p node_modules && cd node_modules && npx --yes tiged https://github.com/uber/cadence-idl cadence-idl --force",
"install-idl": "mkdir -p node_modules && cd node_modules && npx --yes tiged https://github.com/cadence-workflow/cadence-idl cadence-idl --force",
"generate:idl": "mkdir -p src/__generated__/idl && npm run generate:idl:proto && npm run generate:idl:proto:types",
"generate:idl:proto": "rm -rf src/__generated__/idl/proto && cp -R node_modules/cadence-idl/proto src/__generated__/idl/proto",
"generate:idl:proto:types": "rm -rf src/__generated__/proto-ts && ./node_modules/.bin/proto-loader-gen-types --includeDirs=src/__generated__/idl/proto/ --enums=String --longs=String --bytes=String --defaults --inputTemplate='%s__Input' --outputTemplate='%s' --oneofs --grpcLib=@grpc/grpc-js --outDir=src/__generated__/proto-ts/ $(npx glob --all --nodir --cwd=src/__generated__/idl/proto **/*.proto) ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const describeWorkflowResponse: DescribeWorkflowResponse = {
lastFailure: null,
lastWorkerIdentity: 'test-worker-identity-2',
startedWorkerIdentity: 'test-worker-identity-2',
scheduleId: '1234',
},
{
activityId: 'test-activity-1',
Expand All @@ -50,6 +51,7 @@ export const describeWorkflowResponse: DescribeWorkflowResponse = {
lastFailure: null,
lastWorkerIdentity: 'test-worker-identity-1',
startedWorkerIdentity: 'test-worker-identity-1',
scheduleId: '1234',
},
],
pendingChildren: [],
Expand Down

0 comments on commit 976e514

Please sign in to comment.