Skip to content

Commit

Permalink
chore: implement actual huge code correctly
Browse files Browse the repository at this point in the history
Co-authored-by: Alois Klink <[email protected]>
  • Loading branch information
Yokozuna59 and aloisklink authored Sep 20, 2023
1 parent 048dc07 commit 6f05bf0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('[Text] when parsing', () => {
describe('it should handle huge files', function () {
// skipped because this test takes like 2 minutes or more!
it.skip('it should handlehuge diagrams', function () {
const nodes = `A-->B;B-->A`.repeat(20000);
const nodes = ('A-->B;B-->A;'.repeat(415) + 'A-->B;').repeat(57) + 'A-->B;B-->A;'.repeat(275);
flow.parser.parse(`graph LR;${nodes}`);

const vert = flow.parser.yy.getVertices();
Expand Down

0 comments on commit 6f05bf0

Please sign in to comment.