Fix \genfrac w/empty delimiter arguments (#1816)

This commit is contained in:
Ron Kok
2019-01-01 09:13:54 -08:00
committed by ylemkimon
parent 647c661db0
commit e85cb97cca
2 changed files with 6 additions and 8 deletions

View File

@@ -646,6 +646,8 @@ describe("A genfrac builder", function() {
expect("\\cfrac{x}{y}").toBuild();
expect("\\genfrac ( ] {0.06em}{0}{a}{b+c}").toBuild();
expect("\\genfrac ( ] {0.8pt}{}{a}{b+c}").toBuild();
expect("\\genfrac {} {} {0.8pt}{}{a}{b+c}").toBuild();
expect("\\genfrac [ {} {0.8pt}{}{a}{b+c}").toBuild();
});
});