UNPKG
@fboes/aerofly-custom-missions
Version:
latest (1.9.1)
1.9.1
1.9.0
1.8.0
1.7.0
1.6.0
1.4.0
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Builder for Aerofly FS4 Custom Missions Files
@fboes/aerofly-custom-missions
/
src
/
check
/
TestHelpers.test.ts
11 lines
(8 loc)
•
305 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ assertValidAeroflyStructure }
from
"../check/TestHelpers.js"
;
import
{ describe, it }
from
"node:test"
;
describe
(
"TestHelpers"
,
() =>
{
it
(
"should validate Aerofly structure correctly"
,
() =>
{
const
validString =
"<>"
;
assertValidAeroflyStructure
(validString); }); });