Slow Test Runners

I just noticed that the test runners for the curriculum have become slow of recent. and they don’t even run at all with poor network connection. Who else has noticed this?

is this happening on specific challenges?

The front end certifications. the typescript course specifically. just noticed it of late tbh

can you give some examples? there may be a reason from how the tests are structured

this one for example: https://www.freecodecamp.org/learn/front-end-development-libraries-v9/workshop-type-safe-user-profile/step-4

i have my solution as:

const profile: {
  username: string;
  age: number;
  isLoggedIn: boolean;
} = {
  username: "codeLearner",
  age: 25,
  isLoggedIn: false,
  mood: null
};

console.log(profile);

which i am pretty sure is correct. but the test takes forever to load. then, when it does, it shows me this as the reason it wont pass:

Your profile object should have an inline object type with a username property set to string.

Your profile object should have an inline object type with a username property set to string.
Check Your Code



// running tests
1. Your profile object should have an inline object type with a username property set to string.
2. Your profile object should have an inline object type with an age property set to number.
3. Your profile object should have an inline object type with an isLoggedIn property set to boolean.
// tests completed

I am using the brave browser. no extensions installed too

Your solution works from my end. Please try one of the following steps to move forward.

Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.

or - Try the step in incognito or private mode.

or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers.

or - Ensure your browser is up-to-date or try a different browser.

I hope one of these will work for you.