cypress-ct-octane-js 0.1.28 → 0.1.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  <div><a href="https://octanejs.dev/">Octane</a> framework definition and mount adapter for <a href="https://docs.cypress.io/app/component-testing/">component testing</a> with <a href="https://www.cypress.io/">Cypress</a></div>
2
+
2
3
  ## Installation
3
4
 
4
5
  #### With bun
@@ -21,12 +22,11 @@ npm cypress-ct-octane-js
21
22
 
22
23
  ## Usage example
23
24
 
24
- ````
25
- import { mount } from 'cypress-ct-octane-js'
25
+ ```javascript
26
+ import { mount } from "cypress-ct-octane-js";
26
27
 
27
- it('example test', () => {
28
- mount(<>Hello World!</>)
29
- cy.contains('Hello World!').should('be.visible')
30
- })
28
+ it("example test", () => {
29
+ mount(<>Hello World!</>);
30
+ cy.contains("Hello World!").should("be.visible");
31
+ });
31
32
  ```
32
- ````
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "cypress-ct-octane-js",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "Octane framework definition and mount adapter for Cypress component testing",
5
+ "license": "MIT",
6
+ "author": "Erik Fossvold",
7
+ "repository": "git+https://github.com/efossvold/cypress-ct-octane-js",
5
8
  "files": [
6
9
  "dist"
7
10
  ],