removed console.log statements used for debugging from spec tests
This commit is contained in:
parent
a0456e2909
commit
b5b2367959
|
@ -123,15 +123,12 @@ define(["IDBFS"], function(IDBFS) {
|
||||||
that.fs.writeFile('/testfile', '', function (error) {
|
that.fs.writeFile('/testfile', '', function (error) {
|
||||||
if (error) throw error;
|
if (error) throw error;
|
||||||
|
|
||||||
console.log('created file');
|
|
||||||
that.fs.utimes('/testfile', atime, mtime, function (error) {
|
that.fs.utimes('/testfile', atime, mtime, function (error) {
|
||||||
_error = error;
|
_error = error;
|
||||||
|
|
||||||
console.log('getting stats');
|
|
||||||
that.fs.stat('/testfile', function (error, rstat) {
|
that.fs.stat('/testfile', function (error, rstat) {
|
||||||
if (error) throw error;
|
if (error) throw error;
|
||||||
|
|
||||||
console.log('got stats');
|
|
||||||
stat = rstat;
|
stat = rstat;
|
||||||
complete = true;
|
complete = true;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue