persona-community-5/.pnpm-store/v3/files/e0/ed2135863300fe48a56b9c190044ccf4e8c09c54ef2d40221488e04008618d2bdede5ee14311b024071d27a7d33d13323bf1d4ff1cbfb1f656808f19724876
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

55 lines
1.6 KiB
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var util = require("./testUtil");
suite('YAML Syntax', function () {
suite('Warnings for tab symbols', function () {
test('test 001', function () {
testErrors("schemas:\n" +
" - !i", [
{
line: 1,
column: 4,
message: "unknown tag <!i>",
isWarning: false
}
]);
});
test('test 002', function () {
testErrors("schemas:\n" +
" - !in", [
{
line: 1,
column: 4,
message: "unknown tag <!in>",
isWarning: false
}
]);
});
test('test 003', function () {
testErrors("schemas:\n" +
" - !inc", [
{
line: 1,
column: 4,
message: "unknown tag <!inc>",
isWarning: false
}
]);
});
test('test 004', function () {
testErrors("schemas:\n" +
" - !incl", [
{
line: 1,
column: 4,
message: "unknown tag <!incl>",
isWarning: false
}
]);
});
});
});
function testErrors(input, expectedErrors) {
util.testErrors(input, expectedErrors);
}
//# sourceMappingURL=stability.test.js.map