json-server
                                
                                 json-server copied to clipboard
                                
                                    json-server copied to clipboard
                            
                            
                            
                        Enabled to see response status code.
Related #981
Since the element which has id=custom-routes is modified by JS, so cli, server tests can’t confirm if this fixed or not. I add the sample test script to confirm the changeset by using Cypress.
import { createVerify } from "crypto";
describe('JSON Server test', () => {
    it('Shows Top', () => {
      cy.visit('http://localhost:3000/')
      cy.title().should('include', 'JSON Server')
      cy.get('div#custom-routes').should('not.have.text', 'undefined')
    })
  })
I hope this pull request would be any help.....