Skip to content

Commit

Permalink
Merge pull request #210 from tschaub/updates
Browse files Browse the repository at this point in the history
Two unrelated updates
  • Loading branch information
tschaub authored Jun 11, 2017
2 parents 86e9b1b + 79f57fb commit 67e40f3
Show file tree
Hide file tree
Showing 31 changed files with 422 additions and 826 deletions.
15 changes: 0 additions & 15 deletions .editorconfig

This file was deleted.

3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
environment:
matrix:
- nodejs_version: "4"
- nodejs_version: "8"

install:
- ps: Install-Product node $env:nodejs_version
Expand Down
2 changes: 0 additions & 2 deletions benchmarks/read-integration-mock.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ var fs = require('fs');

var mock = require('..');


/**
* Timed test. This includes the mock setup and teardown as part of the overall
* test time.
Expand All @@ -21,5 +20,4 @@ exports.test = function(done) {
mock.restore();
done();
});

};
1 change: 0 additions & 1 deletion benchmarks/read-integration-real.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ var rimraf = require('rimraf');

var tmpPath = '.tmp';


/**
* Timed test. This includes the setup and teardown as part of the overall
* test time.
Expand Down
3 changes: 0 additions & 3 deletions benchmarks/read-mock.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ var fs = require('fs');

var mock = require('..');


/**
* Test setup. Not timed.
*/
Expand All @@ -13,7 +12,6 @@ exports.beforeEach = function() {
});
};


/**
* Timed test.
* @param {function(Error)} done Callback.
Expand All @@ -26,7 +24,6 @@ exports.test = function(done) {
});
};


/**
* Test teardown. Not timed.
*/
Expand Down
3 changes: 0 additions & 3 deletions benchmarks/read-real.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ var rimraf = require('rimraf');

var tmpPath = '.tmp';


/**
* Test setup. Not timed.
* @param {function(Error)} done Callback.
Expand All @@ -20,7 +19,6 @@ exports.beforeEach = function(done) {
});
};


/**
* Timed test.
* @param {function(Error)} done Callback.
Expand All @@ -33,7 +31,6 @@ exports.test = function(done) {
});
};


/**
* Test teardown. Not timed.
* @param {function(Error)} done Callback.
Expand Down
2 changes: 0 additions & 2 deletions benchmarks/write-integration-mock.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ var fs = require('fs');

var mock = require('..');


/**
* Timed test. This includes the mock setup and teardown as part of the overall
* test time.
Expand All @@ -18,5 +17,4 @@ exports.test = function(done) {
mock.restore();
done();
});

};
1 change: 0 additions & 1 deletion benchmarks/write-integration-real.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ var rimraf = require('rimraf');

var tmpPath = '.tmp';


/**
* Timed test. This includes the setup and teardown as part of the overall
* test time.
Expand Down
3 changes: 0 additions & 3 deletions benchmarks/write-mock.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ var fs = require('fs');

var mock = require('..');


/**
* Test setup. Not timed.
*/
exports.beforeEach = function() {
mock();
};


/**
* Timed test.
* @param {function(Error)} done Callback.
Expand All @@ -19,7 +17,6 @@ exports.test = function(done) {
fs.writeFile('foo-mock.txt', 'foo', done);
};


/**
* Test teardown. Not timed.
*/
Expand Down
3 changes: 0 additions & 3 deletions benchmarks/write-real.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ var rimraf = require('rimraf');

var tmpPath = '.tmp';


/**
* Test setup. Not timed.
* @param {function(Error)} done Callback.
Expand All @@ -14,7 +13,6 @@ exports.beforeEach = function(done) {
fs.mkdir(tmpPath, done);
};


/**
* Timed test.
* @param {function(Error)} done Callback.
Expand All @@ -23,7 +21,6 @@ exports.test = function(done) {
fs.writeFile(path.join(tmpPath, 'foo-real.txt'), 'foo', done);
};


/**
* Test teardown. Not timed.
* @param {function(Error)} done Callback.
Expand Down
Loading

0 comments on commit 67e40f3

Please sign in to comment.