-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is neededpriority: mediumMedium priority issueMedium priority issuetestingRelated to testingRelated to testing
Description
Problem
No automated tests in the repository.
Suggestion
Add tests using Jest or Mocha with a mock server.
Test Coverage Should Include
- All HTTP methods (GET, POST, PUT, DELETE)
- Callback execution order
- Error handling scenarios
- CSRF token extraction
- Retry mechanism
- Parameter serialization
- URL validation
Example Structure
/tests
ajax.test.js
callbacks.test.js
csrf.test.js
retry.test.js
Recommended Setup
{
"scripts": {
"test": "jest"
},
"devDependencies": {
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0"
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is neededpriority: mediumMedium priority issueMedium priority issuetestingRelated to testingRelated to testing