regressify 1.2.14 → 1.2.15

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.
@@ -174,10 +174,10 @@ module.exports = async (context) => {
174
174
  }
175
175
  }
176
176
 
177
- if (!!action.persit) {
178
- console.log(logPrefix + 'persit:', action.persit);
177
+ if (!!action.persist) {
178
+ console.log(logPrefix + 'persist:', action.persist);
179
179
  const states = await browserContext.storageState();
180
- setStorageState(action.persit, states);
180
+ setStorageState(action.persist, states);
181
181
  }
182
182
  }
183
183
  };
@@ -199,7 +199,7 @@
199
199
  "$ref": "#/definitions/InputFileAction"
200
200
  },
201
201
  {
202
- "$ref": "#/definitions/PersitAction"
202
+ "$ref": "#/definitions/persistAction"
203
203
  },
204
204
  {
205
205
  "$ref": "#/definitions/PressAction"
@@ -647,11 +647,11 @@
647
647
  "wait"
648
648
  ]
649
649
  },
650
- "PersitAction": {
650
+ "persistAction": {
651
651
  "type": "object",
652
652
  "additionalProperties": false,
653
653
  "properties": {
654
- "persit": {
654
+ "persist": {
655
655
  "type": "string"
656
656
  },
657
657
  "frame": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "regressify",
3
- "version": "1.2.14",
3
+ "version": "1.2.15",
4
4
  "description": "Visual regression tests support",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",