Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Jessop committed Sep 11, 2024
1 parent 762b126 commit d8c15b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
10 changes: 3 additions & 7 deletions packages/wrangler/src/__tests__/deploy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10524,7 +10524,7 @@ export default{
});
});

describe("pipelines", () => {
describe.only("pipelines", () => {

Check failure on line 10527 in packages/wrangler/src/__tests__/deploy.test.ts

View workflow job for this annotation

GitHub Actions / Checks

describe.only not permitted
it("should upload pipelines bindings", async () => {
writeWranglerToml({
pipelines: [
Expand Down Expand Up @@ -10554,13 +10554,9 @@ export default{
- Pipelines:
- MY_PIPELINE: 0123456789ABCDEF0123456789ABCDEF
Uploaded test-name (TIMINGS)
Published test-name (TIMINGS)
Deployed test-name triggers (TIMINGS)
https://test-name.test-sub-domain.workers.dev
Current Deployment ID: Galaxy-Class
Current Version ID: Galaxy-Class
Note: Deployment ID has been renamed to Version ID. Deployment ID is present to maintain compatibility with the previous behavior of this command. This output will change in a future version of Wrangler. To learn more visit: https://developers.cloudflare.com/workers/configuration/versions-and-deployments"
Current Version ID: Galaxy-Class"
`);
});
});
Expand Down
1 change: 1 addition & 0 deletions packages/wrangler/src/deploy/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -835,6 +835,7 @@ See https://developers.cloudflare.com/workers/platform/compatibility-dates for m
logger.log("Worker Startup Time:", result.startup_time_ms, "ms");
}
bindingsPrinted = true;

printBindings({ ...withoutStaticAssets, vars: maskedVars });

versionId = parseNonHyphenedUuid(result.deployment_id);
Expand Down

0 comments on commit d8c15b5

Please sign in to comment.