Test all different types of systems

This commit is contained in:
Daniel Bartholomae 2022-08-28 17:01:39 +02:00
parent 65c73f2eec
commit 092c15a37c
No known key found for this signature in database
GPG Key ID: 782CE028698BEE8C
1 changed files with 8 additions and 1 deletions

View File

@ -6,7 +6,14 @@ setConfig({
securityLevel: 'strict',
});
describe.each([['System', 'system']])('parsing a C4 %s', function (macroName, elementName) {
describe.each([
['System', 'system'],
['SystemDb', 'system_db'],
['SystemQueue', 'system_queue'],
['System_Ext', 'external_system'],
['SystemDb_Ext', 'external_system_db'],
['SystemQueue_Ext', 'external_system_queue'],
])('parsing a C4 %s', function (macroName, elementName) {
beforeEach(function () {
c4.parser.yy = c4Db;
c4.parser.yy.clear();