mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-05 19:28:39 +00:00
Make make lint
not automatically fix lint
Summary: Looks like there was lint, but `make lint` wasn't failing on it because it would just automatically fix it! This removes the `--fix` from `eslint` and fixes the lint. Test Plan: - `make lint` Auditors: kevinb
This commit is contained in:
@@ -421,12 +421,13 @@ describe("A parser with limit controls", function() {
|
||||
|
||||
it("should have the rightmost limit control determine the limits property " +
|
||||
"of the preceding op node", function() {
|
||||
var parsedInput = getParsed("\\int\\nolimits\\limits_2^2");
|
||||
expect(parsedInput[0].value.base.value.limits).toBe(true);
|
||||
|
||||
parsedInput = getParsed("\\int\\limits_2\\nolimits^2");
|
||||
expect(parsedInput[0].value.base.value.limits).toBe(false);
|
||||
});
|
||||
var parsedInput = getParsed("\\int\\nolimits\\limits_2^2");
|
||||
expect(parsedInput[0].value.base.value.limits).toBe(true);
|
||||
|
||||
parsedInput = getParsed("\\int\\limits_2\\nolimits^2");
|
||||
expect(parsedInput[0].value.base.value.limits).toBe(false);
|
||||
});
|
||||
});
|
||||
|
||||
describe("A group parser", function() {
|
||||
|
Reference in New Issue
Block a user