chore: add comment on why we skip flow huge

Co-authored-by: Alois Klink <alois@aloisklink.com>
This commit is contained in:
Reda Al Sulais
2023-09-21 01:23:00 +03:00
committed by GitHub
parent fc3a8902c0
commit 048dc07a90

View File

@@ -13,6 +13,7 @@ describe('[Text] when parsing', () => {
}); });
describe('it should handle huge files', function () { describe('it should handle huge files', function () {
// skipped because this test takes like 2 minutes or more!
it.skip('it should handlehuge diagrams', function () { it.skip('it should handlehuge diagrams', function () {
const nodes = `A-->B;B-->A`.repeat(20000); const nodes = `A-->B;B-->A`.repeat(20000);
flow.parser.parse(`graph LR;${nodes}`); flow.parser.parse(`graph LR;${nodes}`);