Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/semver-5.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
agoldis authored Sep 19, 2023
2 parents d420294 + 6b8ac73 commit 28553bb
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 139 deletions.
6 changes: 6 additions & 0 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ module.exports = defineConfig({
});
```

Add `cypress-cloud/support` to Cypress Support file (matching your test type - e2e or component, or both)

```ts
import `cypress-cloud/support`
```
## Usage
```sh
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@


## [1.9.5](https://github.com/currents-dev/cypress-cloud/compare/v1.9.4...v1.9.5) (2023-09-13)


### Bug Fixes

* support coverage reports ([f7ff574](https://github.com/currents-dev/cypress-cloud/commit/f7ff5745e3ba428abcf0d80718d7493effe29a49))

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


### Bug Fixes

* export support file ([adf857e](https://github.com/currents-dev/cypress-cloud/commit/adf857e46bb0e0a45b3a447d26d8eabffabcf705))

# [1.10.0-beta.0](https://github.com/currents-dev/cypress-cloud/compare/v1.9.3...v1.10.0-beta.0) (2023-08-25)


Expand Down
2 changes: 1 addition & 1 deletion examples/coverage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"cli": "npx cypress-cloud run --ci-build-id $(date \"+%s\") --parallel --record --experimental-coverage-recording"
},
"dependencies": {
"cypress-cloud": "^1.9.2",
"cypress-cloud": "*",
"lodash": "^4.17.21"
}
}
139 changes: 3 additions & 136 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion packages/cypress-cloud/lib/artifacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ export async function uploadArtifacts({
coverageUploadUrl,
});

const totalUploads = (videoPath ? 1 : 0) + screenshots.length;
const totalUploads =
(videoPath ? 1 : 0) + screenshots.length + (coverageFilePath ? 1 : 0);
if (totalUploads === 0) {
// info("Nothing to upload");
return;
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.0",
"version": "1.9.5",
"main": "./dist/index.js",
"author": "Currents Software Inc",
"homepage": "https://github.com/currents-dev/cypress-cloud",
Expand Down

0 comments on commit 28553bb

Please sign in to comment.