Skip to content

Commit d198385

Browse files
committed
fix: HyperApp -> Hyperapp
1 parent ce62208 commit d198385

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# cypress-hyperapp-unit-test
22

3-
> Unit test [HyperApp](https://hyperapp.js.org/) components using [Cypress](https://www.cypress.io/)
3+
> Unit test [Hyperapp](https://hyperapp.js.org/) components using [Cypress](https://www.cypress.io/)
44
55
[![NPM][npm-icon] ][npm-url]
66

@@ -13,7 +13,7 @@
1313

1414
* What is this? This package allows you to use [Cypress](https://www.cypress.io/) test runner to unit test your Hyperapp components with zero effort. The component runs in the real browser with full power of Cypress E2E test runner: [live GUI, powerful API, screen recording, historical DOM snapshots, CI support, cross-platform](https://www.cypress.io/features/).
1515

16-
* The line between unit testing a component that renders into a DOM, makes HTTP requests, uses browser API and an end-to-end test for a complete web application is becoming very blurry in my opinion. Hope this little bridge between HyperApp and Cypress test runner proves it. See examples below - some of them are testing individual components, some full apps. But the tests look and run _very much alike_.
16+
* The line between unit testing a component that renders into a DOM, makes HTTP requests, uses browser API and an end-to-end test for a complete web application is becoming very blurry in my opinion. Hope this little bridge between Hyperapp and Cypress test runner proves it. See examples below - some of them are testing individual components, some full apps. But the tests look and run _very much alike_.
1717

1818
## Install
1919

@@ -61,7 +61,7 @@ describe('Hello World', () => {
6161
})
6262
it('shows greeting', () => {
6363
// use any Cypress command - we have
64-
// real HyperApp application for testing
64+
// real Hyperapp application for testing
6565
cy.contains('.greeting', 'Hello, World')
6666
})
6767
})

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cypress-hyperapp-unit-test",
3-
"description": "Unit test HyperApp components using Cypress",
3+
"description": "Unit test Hyperapp components using Cypress",
44
"version": "0.0.0-development",
55
"author": "Gleb Bahmutov <[email protected]>",
66
"bugs": "https://github.com/bahmutov/cypress-hyperapp-unit-test/issues",

0 commit comments

Comments
 (0)