Add test for description

This commit is contained in:
Daniel Bartholomae 2022-08-24 23:44:29 +02:00
parent 90d472042b
commit be5b8012bd
No known key found for this signature in database
GPG Key ID: 782CE028698BEE8C
1 changed files with 11 additions and 0 deletions

View File

@ -39,6 +39,17 @@ Person(customerA, "Banking Customer A", "A customer of the bank, with personal b
});
});
it('should parse the description', function () {
c4.parser.parse(`C4Context
Person(customerA, "", "A customer of the bank, with personal bank accounts.")`);
expect(c4.parser.yy.getC4ShapeArray()[0]).toMatchObject({
descr: {
text: 'A customer of the bank, with personal bank accounts.',
},
});
});
it('should parse a sprite', function () {
c4.parser.parse(`C4Context
Person(customerA, $sprite="users")`);