mirror of
https://github.com/QuiteAFancyEmerald/Holy-Unblocker.git
synced 2025-05-13 03:50:02 -04:00
axios added
This commit is contained in:
parent
98cbc9c9e9
commit
5fc1d95c63
2 changed files with 21 additions and 1 deletions
19
test.js
Normal file
19
test.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
const axios = require('axios');
|
||||
|
||||
async function testServerResponse() {
|
||||
try {
|
||||
const response = await axios.get('http://localhost:8080/');
|
||||
if (response.status === 400) {
|
||||
console.log('Server responded with status code 400. Test passed.');
|
||||
process.exit(0); // Exit with success
|
||||
} else {
|
||||
console.error(`Expected status code 400 but received ${response.status}. Test failed.`);
|
||||
process.exit(1); // Exit with failure
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Error while testing server response:', error.message);
|
||||
process.exit(1); // Exit with failure
|
||||
}
|
||||
}
|
||||
|
||||
testServerResponse();
|
Loading…
Add table
Add a link
Reference in a new issue