Remove tests involving the `Emoji_Test` property

`Emoji_Test` is not an official Unicode property of strings. Work on standardizing such a property (although likely under a different name) is happening: https://github.com/mathiasbynens/emoji-test-regex-pattern/issues/7
This commit is contained in:
Mathias Bynens 2022-11-10 13:42:46 +01:00 committed by Ms2ger
parent e04de94c07
commit 1d5dc6b577
4 changed files with 0 additions and 4831 deletions

View File

@ -1,20 +0,0 @@
// Copyright 2022 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Negating Unicode property escapes for `Emoji_Test` (property of strings) with `[^\p{…}]` throws an early error.
info: |
Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
Unicode v15.0.0
esid: sec-isvalidregularexpressionliteral
features: [regexp-unicode-property-escapes, regexp-v-flag]
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
/[^\p{Emoji_Test}]/v;

View File

@ -1,20 +0,0 @@
// Copyright 2022 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Negating Unicode property escapes for `Emoji_Test` (property of strings) with `\P{…}` throws an early error.
info: |
Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
Unicode v15.0.0
esid: sec-isvalidregularexpressionliteral
features: [regexp-unicode-property-escapes, regexp-v-flag]
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
/\P{Emoji_Test}/v;

View File

@ -1,20 +0,0 @@
// Copyright 2022 Mathias Bynens. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Mathias Bynens
description: >
Unicode property escapes for `Emoji_Test` (property of strings) with the `u` flag throws an early error. Properties of strings are only supported through the `v` flag.
info: |
Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
Unicode v15.0.0
esid: sec-patterns-static-semantics-early-errors
features: [regexp-unicode-property-escapes, regexp-v-flag]
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
/\p{Emoji_Test}/u;