@ebertjendustries/cstestwrapper 1.0.9 → 1.0.10

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/dist/index.js CHANGED
@@ -166,10 +166,10 @@ var AbstractComponentTesting = class _AbstractComponentTesting {
166
166
  });
167
167
  }
168
168
  expectReadOnly() {
169
- (0, import_vitest.expect)(this.getElement()).toHaveAttribute("readonly", "true");
169
+ (0, import_vitest.expect)(this.getElement()).toHaveAttribute("readonly", "");
170
170
  }
171
171
  expectNotReadOnly() {
172
- (0, import_vitest.expect)(this.getElement()).not.toHaveAttribute("readonly");
172
+ (0, import_vitest.expect)(this.getElement()).toHaveAttribute("readonly", null);
173
173
  }
174
174
  expectChecked() {
175
175
  (0, import_vitest.expect)(this.getElement(), this.msgForExpect()).toBeChecked();
package/dist/index.mjs CHANGED
@@ -85,10 +85,10 @@ var AbstractComponentTesting = class _AbstractComponentTesting {
85
85
  });
86
86
  }
87
87
  expectReadOnly() {
88
- expect(this.getElement()).toHaveAttribute("readonly", "true");
88
+ expect(this.getElement()).toHaveAttribute("readonly", "");
89
89
  }
90
90
  expectNotReadOnly() {
91
- expect(this.getElement()).not.toHaveAttribute("readonly");
91
+ expect(this.getElement()).toHaveAttribute("readonly", null);
92
92
  }
93
93
  expectChecked() {
94
94
  expect(this.getElement(), this.msgForExpect()).toBeChecked();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebertjendustries/cstestwrapper",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "main": "dist/index.cjs",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",