refactor(http): move one Headers test inside the main describe

This commit is contained in:
Victor Berchet 2016-10-05 16:36:11 -07:00 committed by Tobias Bosch
parent e06303a987
commit d9d57d71dd

View File

@ -39,7 +39,6 @@ export function main() {
}); });
}); });
describe('.set()', () => { describe('.set()', () => {
it('should clear all values and re-set for the provided key', () => { it('should clear all values and re-set for the provided key', () => {
const headers = new Headers({'foo': 'bar'}); const headers = new Headers({'foo': 'bar'});
@ -143,10 +142,8 @@ export function main() {
expect(JSON.stringify(parsedHeaders)).toEqual(JSON.stringify(recreatedHeaders)); expect(JSON.stringify(parsedHeaders)).toEqual(JSON.stringify(recreatedHeaders));
}); });
}); });
});
describe('.fromResponseHeaderString()', () => { describe('.fromResponseHeaderString()', () => {
it('should parse a response header string', () => { it('should parse a response header string', () => {
const response = `Date: Fri, 20 Nov 2015 01:45:26 GMT\n` + const response = `Date: Fri, 20 Nov 2015 01:45:26 GMT\n` +
`Content-Type: application/json; charset=utf-8\n` + `Content-Type: application/json; charset=utf-8\n` +
@ -159,4 +156,5 @@ export function main() {
expect(headers.get('Connection')).toEqual('keep-alive'); expect(headers.get('Connection')).toEqual('keep-alive');
}); });
}); });
});
} }