Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility for screenshots and tests with attempts in cypress 13 #5

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2258d7c
tests and test attempts data
miguelangarano Sep 5, 2023
a94d9f2
screenshots data structure and tests with attempts sent as expected w…
miguelangarano Sep 6, 2023
aeab2fb
remove yarn
miguelangarano Sep 6, 2023
5242604
chore: wip
agoldis Sep 6, 2023
0daa82c
added types and quick fix for removing not relevant attempts and scre…
miguelangarano Sep 6, 2023
0d7b2eb
fix: combine standalone with spec:after results
agoldis Sep 6, 2023
9a83d60
Merge branch 'fix/cypress-13-ml' of https://github.com/currents-dev/c…
agoldis Sep 6, 2023
640a163
chore: fixing types
agoldis Sep 6, 2023
45fd903
feat: support cypres@13+
agoldis Sep 6, 2023
22576f7
added types and quick fix for removing not relevant attempts and scre…
miguelangarano Sep 6, 2023
7d62eac
chore: fixing types
agoldis Sep 6, 2023
3e35acd
Merge branch 'fix/cypress-13-ml' of https://github.com/currents-dev/c…
agoldis Sep 6, 2023
3d19fee
chore: release v1.10.0-beta.1
agoldis Sep 6, 2023
f37312e
fix: set test id for pending tests
agoldis Sep 6, 2023
a3d70da
chore: release v1.10.0-beta.2
agoldis Sep 6, 2023
cf8ca5d
fix: issue 179 fixes
agoldis Sep 8, 2023
11268e2
chore: release v1.10.0-beta.3
agoldis Sep 8, 2023
6a26e40
fix: coverage uploads
agoldis Sep 11, 2023
ed8a777
fix: backfill config
agoldis Sep 11, 2023
d39a81d
chore: release v1.10.0-beta.4
agoldis Sep 11, 2023
6773bab
chore: remove debug [skip ci]
agoldis Sep 12, 2023
67e6a0d
fix: pick test:after results explicitly
agoldis Sep 14, 2023
94d91fb
chore: release v1.10.0-beta.5
agoldis Sep 14, 2023
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
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,52 @@


# [1.10.0-beta.5](https://github.com/currents-dev/cypress-cloud/compare/v1.10.0-beta.4...v1.10.0-beta.5) (2023-09-14)


### Bug Fixes

* pick test:after results explicitly ([67e6a0d](https://github.com/currents-dev/cypress-cloud/commit/67e6a0df78d3cff32d101d1bbe3f119c0766a9af))

# [1.10.0-beta.4](https://github.com/currents-dev/cypress-cloud/compare/v1.10.0-beta.3...v1.10.0-beta.4) (2023-09-11)


### Bug Fixes

* backfill config ([ed8a777](https://github.com/currents-dev/cypress-cloud/commit/ed8a777f6299f0778eeabe96534b52bcd3472d0f))
* coverage uploads ([6a26e40](https://github.com/currents-dev/cypress-cloud/commit/6a26e4077cab73f75c64235472e8695ebcf14087))

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


### Bug Fixes

* issue 179 fixes ([cf8ca5d](https://github.com/currents-dev/cypress-cloud/commit/cf8ca5d5f71b69a6fc7d1098b1bb0b42d27427d2))

# [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)


### Bug Fixes

* combine standalone with spec:after results ([0d7b2eb](https://github.com/currents-dev/cypress-cloud/commit/0d7b2eb02ee8aeb0e6ff0627f3afbf0d641bd581))


### Features

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

# [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
12 changes: 12 additions & 0 deletions examples/webapp/cypress/e2e/hang.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
describe("Example spec", () => {
beforeEach(() => {
console.log("beforeEach");
});
afterEach(() => {
console.log("after");
});
it("should open a page", () => {
cy.visit("https://launchdarkly.com/");
cy.get("a").contains("Get started").should("be.visible");
});
});
17 changes: 17 additions & 0 deletions examples/webapp/cypress/e2e/notests.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
describe('No tests', function () {
it.skip('A ', function () {
cy.visit('/');
cy.get('#simpleSearch').type('Africa');
cy.get('.suggestions-result').first().click();
cy.scrollTo(0, 1200);

cy.contains('adssaf');
});
it.skip('B ', function () {
cy.visit('/');
cy.get('#simpleSearch').type('Africa');
cy.get('.suggestions-result').first().click();
cy.scrollTo(0, 1200);
cy.contains('giraffes');
});
});
Loading