archive
/
tstatic
Archived
1
Fork 0

Check powered by header isnt set

This commit is contained in:
Jake Howard 2018-01-17 20:40:09 +00:00
parent 251d46b43f
commit 42f5af27f0
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 1 additions and 2 deletions

View File

@ -55,8 +55,7 @@ describe('Server', function () {
it('Should have no powered by header', function (done) { it('Should have no powered by header', function (done) {
runServer(SERVER_SETTINGS, '/index.html', function (response : any) { runServer(SERVER_SETTINGS, '/index.html', function (response : any) {
expect(response.status).to.equal(200); expect(response.status).to.equal(200);
expect(response.headers.get('x-powered-by')).to.contain('tstatic'); expect(response.headers.get('x-powered-by')).to.be.null;
expect(response.headers.get('x-powered-by')).to.contain(PKG.version);
done(); done();
}); });
}); });