Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: allow spaces in variables #1035

Merged
merged 7 commits into from
Dec 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: remove only
  • Loading branch information
kellyjosephprice committed Dec 5, 2024
commit 15d2ec7b06976d35faf6dc2d6c4ce7fb24106215
2 changes: 1 addition & 1 deletion __tests__/lib/mdast/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('mdast transformer', async () => {
expect(mdast(tablesMdx)).toStrictEqualExceptPosition(tablesJson);
});

it.only('parses variables', () => {
it('parses variables', () => {
// @ts-ignore
expect(mdast(variablesMdx)).toStrictEqualExceptPosition(variablesJson);
});
Expand Down
Loading