Skip to content

Commit 214d0d9

Browse files
committed
remove unneeded comments
1 parent 74484f3 commit 214d0d9

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

tests/test.core.js

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -257,15 +257,14 @@ QUnit.test("twentyc.data.update", function(assert) {
257257

258258
});
259259

260-
/*
261260
QUnit.test("twentyc.data.load/has/get", function(assert) {
262261

263262
twentyc.data.loaders.register(
264263
"Test",
265264
{
266265
Test : function(id, config) {
267266
this.XHRGet(id, config);
268-
this.config.url = "base/tests/test.json"
267+
this.config.url = "http://localhost:9876/base/tests/test.json"
269268
}
270269
},
271270
"XHRGet"
@@ -305,7 +304,7 @@ QUnit.test("twentyc.data.load/has/get", function(assert) {
305304
assert.equal(payload.data.a, 123);
306305
n++;
307306
done2();
308-
var done3 = assert.async();
307+
//var done3 = assert.async();
309308

310309
twentyc.data.load(
311310
"test",
@@ -314,14 +313,11 @@ QUnit.test("twentyc.data.load/has/get", function(assert) {
314313
callback : function() {
315314
assert.equal(n, 2);
316315
assert.equal(j, 2);
317-
done3();
316+
//done3();
318317
}
319318
}
320319
);
321320
}
322321
}
323322
);
324-
325-
326323
});
327-
*/

0 commit comments

Comments
 (0)