browser-ava 2.2.9 → 2.2.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser-ava",
3
- "version": "2.2.9",
3
+ "version": "2.2.11",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -38,16 +38,16 @@
38
38
  "@koa/cors": "^5.0.0",
39
39
  "chalk": "^5.3.0",
40
40
  "commander": "^12.0.0",
41
- "es-module-lexer": "^1.5.0",
41
+ "es-module-lexer": "^1.5.2",
42
42
  "globby": "^14.0.1",
43
43
  "koa": "^2.15.3",
44
44
  "koa-static": "^5.0.0",
45
45
  "playwright": "^1.43.1",
46
- "ws": "^8.16.0"
46
+ "ws": "^8.17.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@types/node": "^20.12.7",
50
- "ava": "^6.1.2",
49
+ "@types/node": "^20.12.8",
50
+ "ava": "^6.1.3",
51
51
  "c8": "^9.1.0",
52
52
  "documentation": "^14.0.3",
53
53
  "execa": "^8.0.1",
@@ -354,6 +354,13 @@ function testContext(def, parentContext) {
354
354
  title
355
355
  });
356
356
  },
357
+ like(a, b, title) {
358
+ def.assertions.push({
359
+ passed: isEqual(a, b), // todo
360
+ message: `${a} != ${b}`,
361
+ title
362
+ });
363
+ },
357
364
 
358
365
  regex(contents, regex, message) {
359
366
  def.assertions.push({