Skip to content

Instantly share code, notes, and snippets.

@hiakku
Last active November 7, 2022 09:51
Show Gist options
  • Save hiakku/33d0d97743a698ea2435acfd9eddde23 to your computer and use it in GitHub Desktop.
Save hiakku/33d0d97743a698ea2435acfd9eddde23 to your computer and use it in GitHub Desktop.
it('test for document readyState property', () => {
//Define the document.readyState property with value as loading
Object.defineProperty(document, 'readyState', {
value: 'loading',
configurable: true,
});
//Here you can call the function with the document.readyState property
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment