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) {
|
||||
if (error) throw error;
|
||||
|
||||
console.log('created file');
|
||||
that.fs.utimes('/testfile', atime, mtime, function (error) {
|
||||
_error = error;
|
||||
|
||||
console.log('getting stats');
|
||||
that.fs.stat('/testfile', function (error, rstat) {
|
||||
if (error) throw error;
|
||||
|
||||
console.log('got stats');
|
||||
stat = rstat;
|
||||
complete = true;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue