aria-api

access ARIA information from JavaScript
git clone https://git.ce9e.org/aria-api.git

commit
e445fe0becfc413651e9439ae90ed8f3e5e9664e
parent
311c16fddc7e43698ceed0e039aff955a32dfed6
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2026-02-18 23:51
mocha: replace xit by it.skip

Diffstat

M test/test-role.js 2 +-
M test/test-wpt.js 4 ++--

2 files changed, 3 insertions, 3 deletions


diff --git a/test/test-role.js b/test/test-role.js

@@ -93,7 +93,7 @@ describe('query', () => {
   93    93 			expect(actual).toEqual('none');
   94    94 		});
   95    95 
   96    -1 		xit('applies scoping rules across shadow roots', () => {
   -1    96 		it.skip('applies scoping rules across shadow roots', () => {
   97    97 			testbed.setHTMLUnsafe(SHADOW_LANDMARK);
   98    98 			var actual = aria.querySelector(testbed, 'banner');
   99    99 			expect(actual).toNotExist();

diff --git a/test/test-wpt.js b/test/test-wpt.js

@@ -1,4 +1,4 @@
    1    -1 /* global describe, it, xit, before, after, expect, aria */
   -1     1 /* global describe, it, before, after, expect, aria */
    2     2 
    3     3 expect.extend({
    4     4 	toBeIn(list) {
@@ -153,7 +153,7 @@ describe('wpt', () => {
  153   153 	};
  154   154 
  155   155 	var registerTest = function(test) {
  156    -1 		var _it = known_failing.includes(test.title) ? xit : it;
   -1   156 		var _it = known_failing.includes(test.title) ? it.skip : it;
  157   157 		_it(test.title, () => {
  158   158 			testbed.innerHTML = test.html;
  159   159 			expect(test.name != null || test.description != null || test.role != null).toBe(true);