Commenting some test code.
This commit is contained in:
parent
ae1c33b863
commit
16069cd477
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ void Net::BuildPrototype(v8::Isolate* isolate,
|
||||||
prototype->SetClassName(mate::StringToV8(isolate, "Net"));
|
prototype->SetClassName(mate::StringToV8(isolate, "Net"));
|
||||||
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
||||||
.SetProperty("URLRequest", &Net::URLRequest)
|
.SetProperty("URLRequest", &Net::URLRequest)
|
||||||
.SetMethod("RequestGarbageCollectionForTesting",
|
.SetMethod("_RequestGarbageCollectionForTesting",
|
||||||
&Net::RequestGarbageCollectionForTesting);
|
&Net::RequestGarbageCollectionForTesting);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ const kOneKiloByte = 1024
|
||||||
const kOneMegaByte = kOneKiloByte * kOneKiloByte
|
const kOneMegaByte = kOneKiloByte * kOneKiloByte
|
||||||
|
|
||||||
describe('net module', function () {
|
describe('net module', function () {
|
||||||
this.timeout(0)
|
// this.timeout(0)
|
||||||
describe('HTTP basics', function () {
|
describe('HTTP basics', function () {
|
||||||
let server
|
let server
|
||||||
beforeEach(function (done) {
|
beforeEach(function (done) {
|
||||||
|
|
Loading…
Reference in a new issue