@brightspace-ui/labs 2.0.0 → 2.1.1

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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -36,6 +36,9 @@ npm run lint:style
36
36
  # translations
37
37
  npm run test:translations
38
38
 
39
+ # accessibility tests
40
+ npm run test:axe
41
+
39
42
  # unit tests
40
43
  npm run test:unit
41
44
  ```
package/package.json CHANGED
@@ -24,8 +24,9 @@
24
24
  "lint:eslint": "eslint . --ext .js,.html",
25
25
  "lint:style": "stylelint \"**/*.{js,html}\"",
26
26
  "start": "web-dev-server --node-resolve --open --watch",
27
- "test": "npm run lint && npm run test:translations && npm run test:unit",
27
+ "test": "npm run lint && npm run test:translations && npm run test:unit && npm run test:axe",
28
28
  "test:translations": "mfv -e -i untranslated",
29
+ "test:axe": "d2l-test-runner axe --chrome",
29
30
  "test:unit": "d2l-test-runner",
30
31
  "test:vdiff": "d2l-test-runner vdiff"
31
32
  },
@@ -51,5 +52,5 @@
51
52
  "@brightspace-ui/core": "^3",
52
53
  "lit": "^3"
53
54
  },
54
- "version": "2.0.0"
55
+ "version": "2.1.1"
55
56
  }