Skip to content

Commit

Permalink
chore: release v1.10.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
agoldis committed Sep 6, 2023
1 parent f37312e commit a3d70da
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@


# [1.10.0-beta.2](https://github.com/currents-dev/cypress-cloud/compare/v1.10.0-beta.1...v1.10.0-beta.2) (2023-09-06)


### Bug Fixes

* combine standalone with spec:after results ([0d7b2eb](https://github.com/currents-dev/cypress-cloud/commit/0d7b2eb02ee8aeb0e6ff0627f3afbf0d641bd581))
* set test id for pending tests ([f37312e](https://github.com/currents-dev/cypress-cloud/commit/f37312e0651954481b1e3fb89552606bea3dde38))


### Features

* support cypres@13+ ([45fd903](https://github.com/currents-dev/cypress-cloud/commit/45fd9036ad686f7edfcb7859db64ce79692dd429))

# [1.10.0-beta.1](https://github.com/currents-dev/cypress-cloud/compare/v1.10.0-beta.0...v1.10.0-beta.1) (2023-09-06)


Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions packages/cypress-cloud/bin/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ main()
if (!result) {
process.exit(1);
}
// @ts-ignore
if (result.status === "failed") {
process.exit(1);
}

// @ts-ignore
const overallFailed = result.totalFailed + result.totalSkipped;
if (overallFailed > 0) {
process.exit(overallFailed);
Expand Down
2 changes: 1 addition & 1 deletion packages/cypress-cloud/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cypress-cloud",
"version": "1.10.0-beta.1",
"version": "1.10.0-beta.2",
"main": "./dist/index.js",
"author": "Currents Software Inc",
"homepage": "https://github.com/currents-dev/cypress-cloud",
Expand Down
1 change: 1 addition & 0 deletions packages/cypress-cloud/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export type CypressRun = ArrayItemType<
export type CypressTest = ArrayItemType<CypressRun["tests"]>;
export type CypressTestAttempt = ArrayItemType<CypressTest["attempts"]>;
export type CypressScreenshot = ArrayItemType<
// @ts-ignore
CypressTestAttempt["screenshots"]
>;

Expand Down

0 comments on commit a3d70da

Please sign in to comment.