Add test for HttpRequest and HttpUrl, bring classes up to spec, change how headers are passed around
This commit is contained in:
parent
67dd1feae8
commit
c69cdbdca8
|
@ -1,5 +1,5 @@
|
|||
describe("Typertext.Http.HttpRequest", function() {
|
||||
it("Exists", function() {
|
||||
it("exists", function() {
|
||||
expect(typeof Typertext.Http.HttpRequest).toBe("function");
|
||||
});
|
||||
});
|
5
test/Typertext/Json/JsonResponse.test.js
Normal file
5
test/Typertext/Json/JsonResponse.test.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
describe("Typertext.Json.JsonResponse", function() {
|
||||
it("exists", function() {
|
||||
expect(typeof Typertext.Json.JsonResponse).toBe("function");
|
||||
});
|
||||
});
|
Reference in a new issue