We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e50d5 commit 51623bbCopy full SHA for 51623bb
1 file changed
tests/utf8.hermes.test.cjs
@@ -10,4 +10,12 @@ if (globalThis.HermesInternal) {
10
globalThis.HermesInternal = true
11
}
12
13
-require('./utf8.lib.test.js')
+if (process.env.EXODUS_TEST_PLATFORM === 'xs') {
14
+ // https://github.com/Moddable-OpenSource/moddable/issues/1562
15
+ // escape() path is used only on Hermes, not XS
16
+ // this test cross-tests that the Hermes path logic works on all engines
17
+ // but it doesn't on XS due to XS bug
18
+ require('node:test').test.skip('Known bug on XS escape(), path not used')
19
+} else {
20
+ require('./utf8.lib.test.js')
21
+}
0 commit comments