@lvce-editor/test-worker 3.2.0 → 3.3.0

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.
@@ -999,6 +999,12 @@ const expect$1 = locator => {
999
999
  text
1000
1000
  });
1001
1001
  },
1002
+ async toContainText(text) {
1003
+ Assert.string(text, 'text must be of type string');
1004
+ return this.checkSingleElementCondition('toContainText', {
1005
+ text
1006
+ });
1007
+ },
1002
1008
  async toHaveValue(value) {
1003
1009
  Assert.string(value, 'value must be of type string');
1004
1010
  return this.checkSingleElementCondition('toHaveValue', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/test-worker",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "",
5
5
  "main": "dist/testWorkerMain.js",
6
6
  "type": "module",