@eeacms/volto-group-block 4.3.4 → 4.3.5

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.
package/CHANGELOG.md CHANGED
@@ -4,8 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [4.3.5](https://github.com/eea/volto-group-block/compare/4.3.4...4.3.5)
8
+
9
+ - Fix cypress tests when using with volto-slate [`e7cff69`](https://github.com/eea/volto-group-block/commit/e7cff6968abf73ea73af9dabe17f16a5d710bdf6)
10
+
7
11
  #### [4.3.4](https://github.com/eea/volto-group-block/compare/4.3.3...4.3.4)
8
12
 
13
+ > 3 January 2022
14
+
15
+ - Release [`#17`](https://github.com/eea/volto-group-block/pull/17)
9
16
  - add cy tests [`#16`](https://github.com/eea/volto-group-block/pull/16)
10
17
 
11
18
  #### [4.3.3](https://github.com/eea/volto-group-block/compare/4.3.2...4.3.3)
@@ -22,16 +22,15 @@ describe('Blocks Tests', () => {
22
22
  cy.get('.blocks-chooser .title').contains('Common').click();
23
23
  cy.get('.content.active.common .button.group').contains('Group').click();
24
24
 
25
- cy.get('.block.text.selected').type("test");
26
- cy.get('.block.text.selected').type("{enter}");
27
- cy.get('.block.text.selected').type("test2");
28
- cy.get('.block.text.selected').type("{enter}");
29
- cy.get('.block.text.selected').type("test3");
30
-
31
- cy.get('.block-toolbar svg').first()
32
- .trigger('mousedown', { button: 0})
33
- .trigger('mousemove', 10, -40, { force: true})
34
- .trigger('mouseup', 10, -40, {force:true});
25
+ cy.get('.block-editor-group [contenteditable=true]').focus().click().type('test{enter}');
26
+ cy.get('.block-editor-group [contenteditable=true]').eq(1).focus().click().type('test2{enter}');
27
+ cy.get('.block-editor-group [contenteditable=true]').eq(1).focus().click().type('test3');
28
+
29
+ cy.get('.block-toolbar svg')
30
+ .first()
31
+ .trigger('mousedown', { button: 0 })
32
+ .trigger('mousemove', 10, -40, { force: true })
33
+ .trigger('mouseup', 10, -40, { force: true });
35
34
 
36
35
  // Save
37
36
  cy.get('#toolbar-save').click();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-group-block",
3
- "version": "4.3.4",
3
+ "version": "4.3.5",
4
4
  "description": "volto-group-block: Volto block to be used to group other blocks",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",