Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ module.exports = {
"plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react
"plugin:@typescript-eslint/recommended", // Uses the recommended rules from @typescript-eslint/eslint-plugin
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier/@typescript-eslint", // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
"plugin:prettier/recommended", // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
],
rules: {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
# We are using deprecated functionality. Downgrade Node so we still compile.
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: 22

- name: Install
run: |
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
3 changes: 3 additions & 0 deletions cypress/integration/docs.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ describe("Documentation Viewer", () => {
cy.intercept("GET", "/toitdoc.json", json).as("getDocs");
});
cy.visit("/");
// eslint-disable-next-line
cy.wait("@getDocs");
});

Expand Down Expand Up @@ -70,6 +71,7 @@ describe("Documentation Viewer", () => {
});
Cypress.config("defaultCommandTimeout", 30000);
cy.visit("/");
// eslint-disable-next-line
cy.wait("@getDocs");
cy.get(".MuiCircularProgress-root").should("not.exist");
});
Expand All @@ -93,6 +95,7 @@ describe("Documentation Viewer", () => {
cy.intercept("GET", "/toitdoc.json", json).as("getDocs");
});
cy.visit("/");
// eslint-disable-next-line
cy.wait("@getDocs");
});

Expand Down