diff --git a/.github/workflows/productionize.yml b/.github/workflows/productionize.yml index 3e8e2db1..334eb597 100644 --- a/.github/workflows/productionize.yml +++ b/.github/workflows/productionize.yml @@ -349,7 +349,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} @@ -520,7 +520,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} @@ -697,7 +697,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 26be02d3..474004be 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -209,7 +209,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 364ecc7b..e6995991 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -89,7 +89,7 @@ jobs: # Send status to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test_bundles.yml b/.github/workflows/test_bundles.yml index e9df6a01..172cb2d7 100644 --- a/.github/workflows/test_bundles.yml +++ b/.github/workflows/test_bundles.yml @@ -88,7 +88,7 @@ jobs: # Send notification to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} @@ -130,7 +130,7 @@ jobs: # Send notification to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} @@ -172,7 +172,7 @@ jobs: # Send notification to Slack channel if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index 6d8aa0b6..a73c5152 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -106,7 +106,7 @@ jobs: # Send Slack notification if job fails: - name: 'Send status to Slack channel in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 9b979c3f..1effb542 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -75,7 +75,7 @@ jobs: # Send Slack notification if job fails: - name: 'Send notification to Slack in case of failure' - uses: act10ns/slack@v1 + uses: act10ns/slack@v2 with: status: ${{ job.status }} steps: ${{ toJson(steps) }} diff --git a/async/compose/test/test.js b/async/compose/test/test.js index 6ae32192..595c5cd6 100644 --- a/async/compose/test/test.js +++ b/async/compose/test/test.js @@ -29,7 +29,7 @@ var composeAsync = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof composeAsync, 'function', 'main export is a function' ); + t.strictEqual( typeof composeAsync, 'function', 'main export is a function' ); t.end(); }); diff --git a/async/function-sequence/test/test.js b/async/function-sequence/test/test.js index 7183d768..c2337889 100644 --- a/async/function-sequence/test/test.js +++ b/async/function-sequence/test/test.js @@ -29,7 +29,7 @@ var funseqAsync = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof funseqAsync, 'function', 'main export is a function' ); + t.strictEqual( typeof funseqAsync, 'function', 'main export is a function' ); t.end(); }); diff --git a/async/test/test.js b/async/test/test.js index e23125bc..f13fe05f 100644 --- a/async/test/test.js +++ b/async/test/test.js @@ -29,7 +29,7 @@ var ns = require( './../lib' ); tape( 'main export is an object', function test( t ) { t.ok( true, __filename ); - t.equal( typeof ns, 'object', 'main export is an object' ); + t.strictEqual( typeof ns, 'object', 'main export is an object' ); t.end(); }); diff --git a/compose/test/test.js b/compose/test/test.js index 9746cae1..f2f35e3b 100644 --- a/compose/test/test.js +++ b/compose/test/test.js @@ -29,7 +29,7 @@ var compose = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof compose, 'function', 'main export is a function' ); + t.strictEqual( typeof compose, 'function', 'main export is a function' ); t.end(); }); diff --git a/constant-function/test/test.js b/constant-function/test/test.js index c2c191a8..bd29a937 100644 --- a/constant-function/test/test.js +++ b/constant-function/test/test.js @@ -28,7 +28,7 @@ var constantFunction = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof constantFunction, 'function', 'main export is a function' ); + t.strictEqual( typeof constantFunction, 'function', 'main export is a function' ); t.end(); }); diff --git a/constructor-name/test/test.js b/constructor-name/test/test.js index 04bad287..fc4ec0be 100644 --- a/constructor-name/test/test.js +++ b/constructor-name/test/test.js @@ -50,7 +50,7 @@ var constructorName = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof constructorName, 'function', 'export is a function' ); + t.strictEqual( typeof constructorName, 'function', 'export is a function' ); t.end(); }); diff --git a/copy/test/test.copy_error.js b/copy/test/test.copy_error.js index d7448888..889e19d0 100644 --- a/copy/test/test.copy_error.js +++ b/copy/test/test.copy_error.js @@ -43,7 +43,7 @@ var opts = { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof copy, 'function', 'export is a function' ); + t.strictEqual( typeof copy, 'function', 'export is a function' ); t.end(); }); diff --git a/copy/test/test.deep_copy.js b/copy/test/test.deep_copy.js index c0610a27..d3304753 100644 --- a/copy/test/test.deep_copy.js +++ b/copy/test/test.deep_copy.js @@ -39,7 +39,7 @@ var LEVEL = PINF; tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof copy, 'function', 'export is a function' ); + t.strictEqual( typeof copy, 'function', 'export is a function' ); t.end(); }); diff --git a/copy/test/test.js b/copy/test/test.js index b947dee1..02b092da 100644 --- a/copy/test/test.js +++ b/copy/test/test.js @@ -31,7 +31,7 @@ var fixtures = require( './fixtures' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof copy, 'function', 'export is a function' ); + t.strictEqual( typeof copy, 'function', 'export is a function' ); t.end(); }); diff --git a/curry-right/test/test.js b/curry-right/test/test.js index b34eaef1..b455d237 100644 --- a/curry-right/test/test.js +++ b/curry-right/test/test.js @@ -35,7 +35,7 @@ function add( x, y, z ) { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof curryRight, 'function', 'main export is a function' ); + t.strictEqual( typeof curryRight, 'function', 'main export is a function' ); t.end(); }); diff --git a/curry/test/test.js b/curry/test/test.js index 3b675063..990d85dd 100644 --- a/curry/test/test.js +++ b/curry/test/test.js @@ -35,7 +35,7 @@ function add( x, y, z ) { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof curry, 'function', 'main export is a function' ); + t.strictEqual( typeof curry, 'function', 'main export is a function' ); t.end(); }); diff --git a/decorate-after/test/test.factory.js b/decorate-after/test/test.factory.js index 59fb9216..1aed4237 100644 --- a/decorate-after/test/test.factory.js +++ b/decorate-after/test/test.factory.js @@ -30,7 +30,7 @@ var decorateAfter = require( './../lib/factory.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof decorateAfter, 'function', 'main export is a function' ); + t.strictEqual( typeof decorateAfter, 'function', 'main export is a function' ); t.end(); }); diff --git a/decorate-after/test/test.js b/decorate-after/test/test.js index 61a13865..d7d7a1ff 100644 --- a/decorate-after/test/test.js +++ b/decorate-after/test/test.js @@ -28,7 +28,7 @@ var decorateAfter = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof decorateAfter, 'function', 'main export is a function' ); + t.strictEqual( typeof decorateAfter, 'function', 'main export is a function' ); t.end(); }); diff --git a/decorate-after/test/test.main.js b/decorate-after/test/test.main.js index fd1e89f3..5360a254 100644 --- a/decorate-after/test/test.main.js +++ b/decorate-after/test/test.main.js @@ -30,7 +30,7 @@ var decorateAfter = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof decorateAfter, 'function', 'main export is a function' ); + t.strictEqual( typeof decorateAfter, 'function', 'main export is a function' ); t.end(); }); diff --git a/deep-get/test/test.dget.js b/deep-get/test/test.dget.js index adc17227..67bcac6a 100644 --- a/deep-get/test/test.dget.js +++ b/deep-get/test/test.dget.js @@ -28,7 +28,7 @@ var dget = require( './../lib/dget.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof dget, 'function', 'main export is a function' ); + t.strictEqual( typeof dget, 'function', 'main export is a function' ); t.end(); }); diff --git a/deep-get/test/test.factory.js b/deep-get/test/test.factory.js index 7f772a5d..88993c71 100644 --- a/deep-get/test/test.factory.js +++ b/deep-get/test/test.factory.js @@ -28,7 +28,7 @@ var factory = require( './../lib/factory.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof factory, 'function', 'main export is a function' ); + t.strictEqual( typeof factory, 'function', 'main export is a function' ); t.end(); }); diff --git a/deep-get/test/test.js b/deep-get/test/test.js index ccf0812d..fc365080 100644 --- a/deep-get/test/test.js +++ b/deep-get/test/test.js @@ -28,7 +28,7 @@ var deepGet = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof deepGet, 'function', 'main export is a function' ); + t.strictEqual( typeof deepGet, 'function', 'main export is a function' ); t.end(); }); diff --git a/deep-get/test/test.validate.js b/deep-get/test/test.validate.js index 40c86575..5cc56fe0 100644 --- a/deep-get/test/test.validate.js +++ b/deep-get/test/test.validate.js @@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof validate, 'function', 'main export is a function' ); + t.strictEqual( typeof validate, 'function', 'main export is a function' ); t.end(); }); diff --git a/deep-set/test/test.dset.js b/deep-set/test/test.dset.js index 1d450d4b..9a6421cc 100644 --- a/deep-set/test/test.dset.js +++ b/deep-set/test/test.dset.js @@ -28,7 +28,7 @@ var dset = require( './../lib/dset.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof dset, 'function', 'main export is a function' ); + t.strictEqual( typeof dset, 'function', 'main export is a function' ); t.end(); }); diff --git a/deep-set/test/test.factory.js b/deep-set/test/test.factory.js index 6aeafd4f..613cb3e5 100644 --- a/deep-set/test/test.factory.js +++ b/deep-set/test/test.factory.js @@ -28,7 +28,7 @@ var factory = require( './../lib/factory.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof factory, 'function', 'main export is a function' ); + t.strictEqual( typeof factory, 'function', 'main export is a function' ); t.end(); }); diff --git a/deep-set/test/test.js b/deep-set/test/test.js index 3f62a04a..cf05e846 100644 --- a/deep-set/test/test.js +++ b/deep-set/test/test.js @@ -28,7 +28,7 @@ var deepSet = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof deepSet, 'function', 'main export is a function' ); + t.strictEqual( typeof deepSet, 'function', 'main export is a function' ); t.end(); }); diff --git a/deep-set/test/test.validate.js b/deep-set/test/test.validate.js index c6cef128..9f7ace4f 100644 --- a/deep-set/test/test.validate.js +++ b/deep-set/test/test.validate.js @@ -29,7 +29,7 @@ var validate = require( './../lib/validate.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof validate, 'function', 'main export is a function' ); + t.strictEqual( typeof validate, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-configurable-read-only-accessor/test/test.js b/define-configurable-read-only-accessor/test/test.js index 1f97d938..bb0e3930 100644 --- a/define-configurable-read-only-accessor/test/test.js +++ b/define-configurable-read-only-accessor/test/test.js @@ -32,7 +32,7 @@ var setConfigurableReadOnlyAccessor = require( './../lib' ); // eslint-disable-l tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setConfigurableReadOnlyAccessor, 'function', 'main export is a function' ); + t.strictEqual( typeof setConfigurableReadOnlyAccessor, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-configurable-read-only-property/test/test.js b/define-configurable-read-only-property/test/test.js index dd32e764..ff53f648 100644 --- a/define-configurable-read-only-property/test/test.js +++ b/define-configurable-read-only-property/test/test.js @@ -32,7 +32,7 @@ var setConfigurableReadOnly = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setConfigurableReadOnly, 'function', 'main export is a function' ); + t.strictEqual( typeof setConfigurableReadOnly, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-configurable-read-write-accessor/test/test.js b/define-configurable-read-write-accessor/test/test.js index 26ffbee8..c920a992 100644 --- a/define-configurable-read-write-accessor/test/test.js +++ b/define-configurable-read-write-accessor/test/test.js @@ -32,7 +32,7 @@ var setConfigurableReadWriteAccessor = require( './../lib' ); // eslint-disable- tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setConfigurableReadWriteAccessor, 'function', 'main export is a function' ); + t.strictEqual( typeof setConfigurableReadWriteAccessor, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-configurable-write-only-accessor/test/test.js b/define-configurable-write-only-accessor/test/test.js index 3d606177..59b12993 100644 --- a/define-configurable-write-only-accessor/test/test.js +++ b/define-configurable-write-only-accessor/test/test.js @@ -32,7 +32,7 @@ var setConfigurableWriteOnlyAccessor = require( './../lib' ); // eslint-disable- tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setConfigurableWriteOnlyAccessor, 'function', 'main export is a function' ); + t.strictEqual( typeof setConfigurableWriteOnlyAccessor, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-memoized-configurable-read-only-property/test/test.js b/define-memoized-configurable-read-only-property/test/test.js index 226e199b..07150b35 100644 --- a/define-memoized-configurable-read-only-property/test/test.js +++ b/define-memoized-configurable-read-only-property/test/test.js @@ -34,7 +34,7 @@ var setMemoizedConfigurableReadOnly = require( './../lib' ); // eslint-disable-l tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setMemoizedConfigurableReadOnly, 'function', 'main export is a function' ); + t.strictEqual( typeof setMemoizedConfigurableReadOnly, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-memoized-property/test/test.js b/define-memoized-property/test/test.js index ecf4acda..6b4537c8 100644 --- a/define-memoized-property/test/test.js +++ b/define-memoized-property/test/test.js @@ -34,7 +34,7 @@ var defineMemoizedProperty = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof defineMemoizedProperty, 'function', 'main export is a function' ); + t.strictEqual( typeof defineMemoizedProperty, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-memoized-read-only-property/test/test.js b/define-memoized-read-only-property/test/test.js index 447ddc0a..aec7a9b2 100644 --- a/define-memoized-read-only-property/test/test.js +++ b/define-memoized-read-only-property/test/test.js @@ -34,7 +34,7 @@ var setMemoizedReadOnly = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setMemoizedReadOnly, 'function', 'main export is a function' ); + t.strictEqual( typeof setMemoizedReadOnly, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-nonenumerable-property/test/test.js b/define-nonenumerable-property/test/test.js index 91d517e8..77a92626 100644 --- a/define-nonenumerable-property/test/test.js +++ b/define-nonenumerable-property/test/test.js @@ -32,7 +32,7 @@ var setNonEnumerableProperty = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setNonEnumerableProperty, 'function', 'main export is a function' ); + t.strictEqual( typeof setNonEnumerableProperty, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-nonenumerable-read-only-accessor/test/test.js b/define-nonenumerable-read-only-accessor/test/test.js index 9189bbc1..39ede6f6 100644 --- a/define-nonenumerable-read-only-accessor/test/test.js +++ b/define-nonenumerable-read-only-accessor/test/test.js @@ -30,7 +30,7 @@ var setNonEnumerableReadOnlyAccessor = require( './../lib' ); // eslint-disable- tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setNonEnumerableReadOnlyAccessor, 'function', 'main export is a function' ); + t.strictEqual( typeof setNonEnumerableReadOnlyAccessor, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-nonenumerable-read-only-property/test/test.js b/define-nonenumerable-read-only-property/test/test.js index d7621ca9..872e7671 100644 --- a/define-nonenumerable-read-only-property/test/test.js +++ b/define-nonenumerable-read-only-property/test/test.js @@ -30,7 +30,7 @@ var setNonEnumerableReadOnly = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setNonEnumerableReadOnly, 'function', 'main export is a function' ); + t.strictEqual( typeof setNonEnumerableReadOnly, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-nonenumerable-read-write-accessor/test/test.js b/define-nonenumerable-read-write-accessor/test/test.js index c18645e3..5fd66753 100644 --- a/define-nonenumerable-read-write-accessor/test/test.js +++ b/define-nonenumerable-read-write-accessor/test/test.js @@ -30,7 +30,7 @@ var setNonEnumerableReadWriteAccessor = require( './../lib' ); // eslint-disable tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setNonEnumerableReadWriteAccessor, 'function', 'main export is a function' ); + t.strictEqual( typeof setNonEnumerableReadWriteAccessor, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-nonenumerable-write-only-accessor/test/test.js b/define-nonenumerable-write-only-accessor/test/test.js index a38db201..fa324b7f 100644 --- a/define-nonenumerable-write-only-accessor/test/test.js +++ b/define-nonenumerable-write-only-accessor/test/test.js @@ -30,7 +30,7 @@ var setNonEnumerableWriteOnlyAccessor = require( './../lib' ); // eslint-disable tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setNonEnumerableWriteOnlyAccessor, 'function', 'main export is a function' ); + t.strictEqual( typeof setNonEnumerableWriteOnlyAccessor, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-properties/test/test.js b/define-properties/test/test.js index 095afadb..c82679fd 100644 --- a/define-properties/test/test.js +++ b/define-properties/test/test.js @@ -31,7 +31,7 @@ var defineProperties = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof defineProperties, 'function', 'main export is a function' ); + t.strictEqual( typeof defineProperties, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-properties/test/test.polyfill.js b/define-properties/test/test.polyfill.js index ac7c8b3e..790883d8 100644 --- a/define-properties/test/test.polyfill.js +++ b/define-properties/test/test.polyfill.js @@ -29,7 +29,7 @@ var defineProperties = require( './../lib/polyfill.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof defineProperties, 'function', 'main export is a function' ); + t.strictEqual( typeof defineProperties, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-property/test/test.js b/define-property/test/test.js index a346ec93..b8e6a448 100644 --- a/define-property/test/test.js +++ b/define-property/test/test.js @@ -31,7 +31,7 @@ var defineProperty = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof defineProperty, 'function', 'main export is a function' ); + t.strictEqual( typeof defineProperty, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-property/test/test.polyfill.js b/define-property/test/test.polyfill.js index eda2912d..9be532a6 100644 --- a/define-property/test/test.polyfill.js +++ b/define-property/test/test.polyfill.js @@ -31,7 +31,7 @@ var defineProperty = require( './../lib/polyfill.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof defineProperty, 'function', 'main export is a function' ); + t.strictEqual( typeof defineProperty, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-read-only-accessor/test/test.js b/define-read-only-accessor/test/test.js index 367941e4..6cce6940 100644 --- a/define-read-only-accessor/test/test.js +++ b/define-read-only-accessor/test/test.js @@ -30,7 +30,7 @@ var setReadOnlyAccessor = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setReadOnlyAccessor, 'function', 'main export is a function' ); + t.strictEqual( typeof setReadOnlyAccessor, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-read-only-property/test/test.js b/define-read-only-property/test/test.js index 1453d08f..5fb4c7b9 100644 --- a/define-read-only-property/test/test.js +++ b/define-read-only-property/test/test.js @@ -30,7 +30,7 @@ var setReadOnly = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setReadOnly, 'function', 'main export is a function' ); + t.strictEqual( typeof setReadOnly, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-read-write-accessor/test/test.js b/define-read-write-accessor/test/test.js index cf85ad01..f002d639 100644 --- a/define-read-write-accessor/test/test.js +++ b/define-read-write-accessor/test/test.js @@ -30,7 +30,7 @@ var setReadWriteAccessor = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setReadWriteAccessor, 'function', 'main export is a function' ); + t.strictEqual( typeof setReadWriteAccessor, 'function', 'main export is a function' ); t.end(); }); diff --git a/define-write-only-accessor/test/test.js b/define-write-only-accessor/test/test.js index 96caafee..01ad9c11 100644 --- a/define-write-only-accessor/test/test.js +++ b/define-write-only-accessor/test/test.js @@ -30,7 +30,7 @@ var setWriteOnlyAccessor = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof setWriteOnlyAccessor, 'function', 'main export is a function' ); + t.strictEqual( typeof setWriteOnlyAccessor, 'function', 'main export is a function' ); t.end(); }); diff --git a/dirname/test/test.js b/dirname/test/test.js index 952ca6d8..34b75d3a 100644 --- a/dirname/test/test.js +++ b/dirname/test/test.js @@ -28,7 +28,7 @@ var dirname = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof dirname, 'function', 'main export is a function' ); + t.strictEqual( typeof dirname, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/package.json b/dsv/base/parse/package.json index f2400ec7..388ae930 100644 --- a/dsv/base/parse/package.json +++ b/dsv/base/parse/package.json @@ -1,5 +1,5 @@ { - "name": "@stdlib/utils/base/dsv/parse", + "name": "@stdlib/utils/dsv/base/parse", "version": "0.0.0", "description": "Incremental parser for delimiter-separated values (DSV).", "license": "Apache-2.0", diff --git a/dsv/base/parse/test/test.basic.js b/dsv/base/parse/test/test.basic.js index ccec6113..2b310d4e 100644 --- a/dsv/base/parse/test/test.basic.js +++ b/dsv/base/parse/test/test.basic.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/basic.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.carriage_return.js b/dsv/base/parse/test/test.carriage_return.js index 772efeb0..2864d749 100644 --- a/dsv/base/parse/test/test.carriage_return.js +++ b/dsv/base/parse/test/test.carriage_return.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/carriage_return.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.comment.js b/dsv/base/parse/test/test.comment.js index 48255f9a..b6ce8c9f 100644 --- a/dsv/base/parse/test/test.comment.js +++ b/dsv/base/parse/test/test.comment.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/comment.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.comment_sequence.js b/dsv/base/parse/test/test.comment_sequence.js index 32289069..f9235928 100644 --- a/dsv/base/parse/test/test.comment_sequence.js +++ b/dsv/base/parse/test/test.comment_sequence.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/comment_sequence.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.crlf.js b/dsv/base/parse/test/test.crlf.js index a485ada3..821f4031 100644 --- a/dsv/base/parse/test/test.crlf.js +++ b/dsv/base/parse/test/test.crlf.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/crlf.crlf.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.custom_delimiter.js b/dsv/base/parse/test/test.custom_delimiter.js index 80e0cfea..eb6d7894 100644 --- a/dsv/base/parse/test/test.custom_delimiter.js +++ b/dsv/base/parse/test/test.custom_delimiter.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/custom_delimiter.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.custom_delimiter_latin.js b/dsv/base/parse/test/test.custom_delimiter_latin.js index 63848966..7990859b 100644 --- a/dsv/base/parse/test/test.custom_delimiter_latin.js +++ b/dsv/base/parse/test/test.custom_delimiter_latin.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/custom_delimiter_latin.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.custom_delimiter_sequence.js b/dsv/base/parse/test/test.custom_delimiter_sequence.js index 89db6935..ebe68a54 100644 --- a/dsv/base/parse/test/test.custom_delimiter_sequence.js +++ b/dsv/base/parse/test/test.custom_delimiter_sequence.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/custom_delimiter_sequence.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.custom_newline.js b/dsv/base/parse/test/test.custom_newline.js index 14837cd9..b948eab5 100644 --- a/dsv/base/parse/test/test.custom_newline.js +++ b/dsv/base/parse/test/test.custom_newline.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/custom_newline.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.custom_newline_sequence.js b/dsv/base/parse/test/test.custom_newline_sequence.js index c94c0417..384a1726 100644 --- a/dsv/base/parse/test/test.custom_newline_sequence.js +++ b/dsv/base/parse/test/test.custom_newline_sequence.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/custom_newline_sequence.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.custom_quote.js b/dsv/base/parse/test/test.custom_quote.js index 12437cbb..9a75f3a2 100644 --- a/dsv/base/parse/test/test.custom_quote.js +++ b/dsv/base/parse/test/test.custom_quote.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/custom_quote.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.custom_quote_sequence.js b/dsv/base/parse/test/test.custom_quote_sequence.js index 34a61259..6908358e 100644 --- a/dsv/base/parse/test/test.custom_quote_sequence.js +++ b/dsv/base/parse/test/test.custom_quote_sequence.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/custom_quote_sequence.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.custom_quoted_field_with_escape.js b/dsv/base/parse/test/test.custom_quoted_field_with_escape.js index 407f17b2..7342e2a8 100644 --- a/dsv/base/parse/test/test.custom_quoted_field_with_escape.js +++ b/dsv/base/parse/test/test.custom_quoted_field_with_escape.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/custom_quoted_field_with_escape.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.doublequote.js b/dsv/base/parse/test/test.doublequote.js index 544daf0b..10f15cbf 100644 --- a/dsv/base/parse/test/test.doublequote.js +++ b/dsv/base/parse/test/test.doublequote.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/doublequote.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.doublequote_custom_quote.js b/dsv/base/parse/test/test.doublequote_custom_quote.js index aefb8576..7163e985 100644 --- a/dsv/base/parse/test/test.doublequote_custom_quote.js +++ b/dsv/base/parse/test/test.doublequote_custom_quote.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/doublequote_custom_quote.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.earthquakes.js b/dsv/base/parse/test/test.earthquakes.js index 39b0663e..3cfbfbc2 100644 --- a/dsv/base/parse/test/test.earthquakes.js +++ b/dsv/base/parse/test/test.earthquakes.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/earthquakes.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.empty.js b/dsv/base/parse/test/test.empty.js index 42f13bb5..87a46c37 100644 --- a/dsv/base/parse/test/test.empty.js +++ b/dsv/base/parse/test/test.empty.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/empty.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.empty_fields.js b/dsv/base/parse/test/test.empty_fields.js index d6939415..6d8469d7 100644 --- a/dsv/base/parse/test/test.empty_fields.js +++ b/dsv/base/parse/test/test.empty_fields.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/empty_fields.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.empty_leading_fields.js b/dsv/base/parse/test/test.empty_leading_fields.js index 379687cf..b390e026 100644 --- a/dsv/base/parse/test/test.empty_leading_fields.js +++ b/dsv/base/parse/test/test.empty_leading_fields.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/empty_leading_fields.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.empty_quoted_fields.js b/dsv/base/parse/test/test.empty_quoted_fields.js index b0d7dee6..4a1335ad 100644 --- a/dsv/base/parse/test/test.empty_quoted_fields.js +++ b/dsv/base/parse/test/test.empty_quoted_fields.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/empty_quoted_fields.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.empty_trailing_fields.js b/dsv/base/parse/test/test.empty_trailing_fields.js index c260dc2c..7ce4c7c9 100644 --- a/dsv/base/parse/test/test.empty_trailing_fields.js +++ b/dsv/base/parse/test/test.empty_trailing_fields.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/empty_trailing_fields.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.excel_copy_paste_crlf.js b/dsv/base/parse/test/test.excel_copy_paste_crlf.js index ccd1be88..604b1166 100644 --- a/dsv/base/parse/test/test.excel_copy_paste_crlf.js +++ b/dsv/base/parse/test/test.excel_copy_paste_crlf.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/excel_copy_paste.crlf.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.field_leading_and_trailing_whitespace.js b/dsv/base/parse/test/test.field_leading_and_trailing_whitespace.js index 26d2d36a..79a0d14a 100644 --- a/dsv/base/parse/test/test.field_leading_and_trailing_whitespace.js +++ b/dsv/base/parse/test/test.field_leading_and_trailing_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/field_leading_and_trailing_whitespace.json' ) tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.field_leading_whitespace.js b/dsv/base/parse/test/test.field_leading_whitespace.js index 6216ed2f..c87ba712 100644 --- a/dsv/base/parse/test/test.field_leading_whitespace.js +++ b/dsv/base/parse/test/test.field_leading_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/field_leading_whitespace.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.field_trailing_whitespace.js b/dsv/base/parse/test/test.field_trailing_whitespace.js index a94ef467..65d82fa3 100644 --- a/dsv/base/parse/test/test.field_trailing_whitespace.js +++ b/dsv/base/parse/test/test.field_trailing_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/field_trailing_whitespace.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.geojson.js b/dsv/base/parse/test/test.geojson.js index 5d9833df..0557aef1 100644 --- a/dsv/base/parse/test/test.geojson.js +++ b/dsv/base/parse/test/test.geojson.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/geojson.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.iris.js b/dsv/base/parse/test/test.iris.js index 70f7f9b9..f3d3e5c5 100644 --- a/dsv/base/parse/test/test.iris.js +++ b/dsv/base/parse/test/test.iris.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/iris.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.js b/dsv/base/parse/test/test.js index 9b3c9000..f5e25110 100644 --- a/dsv/base/parse/test/test.js +++ b/dsv/base/parse/test/test.js @@ -28,7 +28,7 @@ var Parser = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.json.js b/dsv/base/parse/test/test.json.js index 4f610681..15d03022 100644 --- a/dsv/base/parse/test/test.json.js +++ b/dsv/base/parse/test/test.json.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/json.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.latin.js b/dsv/base/parse/test/test.latin.js index 7a99ce52..3a38cee5 100644 --- a/dsv/base/parse/test/test.latin.js +++ b/dsv/base/parse/test/test.latin.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/latin.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.no_quoted_fields.js b/dsv/base/parse/test/test.no_quoted_fields.js index 0b9c0825..6f1f637c 100644 --- a/dsv/base/parse/test/test.no_quoted_fields.js +++ b/dsv/base/parse/test/test.no_quoted_fields.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/no_quoted_fields.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.pension_recipients.js b/dsv/base/parse/test/test.pension_recipients.js index 543af2f8..feb29454 100644 --- a/dsv/base/parse/test/test.pension_recipients.js +++ b/dsv/base/parse/test/test.pension_recipients.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/fy_2020_pension_recipients_by_state.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.public_school.js b/dsv/base/parse/test/test.public_school.js index 6c3796f5..82036749 100644 --- a/dsv/base/parse/test/test.public_school.js +++ b/dsv/base/parse/test/test.public_school.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/public_school_characteristics_2017-18.json' ) tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.quoted_field_leading_and_trailing_whitespace.js b/dsv/base/parse/test/test.quoted_field_leading_and_trailing_whitespace.js index 0146cbd0..1259cbb9 100644 --- a/dsv/base/parse/test/test.quoted_field_leading_and_trailing_whitespace.js +++ b/dsv/base/parse/test/test.quoted_field_leading_and_trailing_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/quoted_field_leading_and_trailing_whitespace. tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.quoted_field_leading_whitespace.js b/dsv/base/parse/test/test.quoted_field_leading_whitespace.js index 86b242be..a5daa60c 100644 --- a/dsv/base/parse/test/test.quoted_field_leading_whitespace.js +++ b/dsv/base/parse/test/test.quoted_field_leading_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/quoted_field_leading_whitespace.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.quoted_field_trailing_whitespace.js b/dsv/base/parse/test/test.quoted_field_trailing_whitespace.js index e4e4bca7..5ecc1b1b 100644 --- a/dsv/base/parse/test/test.quoted_field_trailing_whitespace.js +++ b/dsv/base/parse/test/test.quoted_field_trailing_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/quoted_field_trailing_whitespace.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.quoted_field_with_delimiter.js b/dsv/base/parse/test/test.quoted_field_with_delimiter.js index 9bf27e30..ef971c57 100644 --- a/dsv/base/parse/test/test.quoted_field_with_delimiter.js +++ b/dsv/base/parse/test/test.quoted_field_with_delimiter.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/quoted_field_with_delimiter.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.quoted_field_with_escape.js b/dsv/base/parse/test/test.quoted_field_with_escape.js index 04c7b270..559f6b43 100644 --- a/dsv/base/parse/test/test.quoted_field_with_escape.js +++ b/dsv/base/parse/test/test.quoted_field_with_escape.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/quoted_field_with_escape.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.quoted_field_with_escaped_quote.js b/dsv/base/parse/test/test.quoted_field_with_escaped_quote.js index aded253a..41a621c2 100644 --- a/dsv/base/parse/test/test.quoted_field_with_escaped_quote.js +++ b/dsv/base/parse/test/test.quoted_field_with_escaped_quote.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/quoted_field_with_escaped_quote.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.quoted_field_with_newline.js b/dsv/base/parse/test/test.quoted_field_with_newline.js index 3dc67ce6..3dce0438 100644 --- a/dsv/base/parse/test/test.quoted_field_with_newline.js +++ b/dsv/base/parse/test/test.quoted_field_with_newline.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/quoted_field_with_newline.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.ragged.js b/dsv/base/parse/test/test.ragged.js index 1e0b3bd6..2b5f2590 100644 --- a/dsv/base/parse/test/test.ragged.js +++ b/dsv/base/parse/test/test.ragged.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/ragged.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.simple.js b/dsv/base/parse/test/test.simple.js index a7e77746..075c494f 100644 --- a/dsv/base/parse/test/test.simple.js +++ b/dsv/base/parse/test/test.simple.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/simple.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.simple2.js b/dsv/base/parse/test/test.simple2.js index ac72d69e..93814e34 100644 --- a/dsv/base/parse/test/test.simple2.js +++ b/dsv/base/parse/test/test.simple2.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/simple2.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skip.js b/dsv/base/parse/test/test.skip.js index de0992c5..2eabd144 100644 --- a/dsv/base/parse/test/test.skip.js +++ b/dsv/base/parse/test/test.skip.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skip.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skip_sequence.js b/dsv/base/parse/test/test.skip_sequence.js index e9591961..42af3bfc 100644 --- a/dsv/base/parse/test/test.skip_sequence.js +++ b/dsv/base/parse/test/test.skip_sequence.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skip_sequence.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_comment.js b/dsv/base/parse/test/test.skipped_comment.js index 256e2a05..7c83e161 100644 --- a/dsv/base/parse/test/test.skipped_comment.js +++ b/dsv/base/parse/test/test.skipped_comment.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_comment.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_comment_sequence.js b/dsv/base/parse/test/test.skipped_comment_sequence.js index b23415f1..082a2f17 100644 --- a/dsv/base/parse/test/test.skipped_comment_sequence.js +++ b/dsv/base/parse/test/test.skipped_comment_sequence.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_comment_sequence.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_custom_delimiter.js b/dsv/base/parse/test/test.skipped_custom_delimiter.js index 15cf9a5f..556f60f7 100644 --- a/dsv/base/parse/test/test.skipped_custom_delimiter.js +++ b/dsv/base/parse/test/test.skipped_custom_delimiter.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_custom_delimiter.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_custom_delimiter_latin.js b/dsv/base/parse/test/test.skipped_custom_delimiter_latin.js index 47e85169..3a5b139e 100644 --- a/dsv/base/parse/test/test.skipped_custom_delimiter_latin.js +++ b/dsv/base/parse/test/test.skipped_custom_delimiter_latin.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_custom_delimiter_latin.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_custom_delimiter_sequence.js b/dsv/base/parse/test/test.skipped_custom_delimiter_sequence.js index 2620a513..9c271c36 100644 --- a/dsv/base/parse/test/test.skipped_custom_delimiter_sequence.js +++ b/dsv/base/parse/test/test.skipped_custom_delimiter_sequence.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_custom_delimiter_sequence.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_custom_newline.js b/dsv/base/parse/test/test.skipped_custom_newline.js index 3ab89736..46db7e3a 100644 --- a/dsv/base/parse/test/test.skipped_custom_newline.js +++ b/dsv/base/parse/test/test.skipped_custom_newline.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_custom_newline.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_custom_newline_sequence.js b/dsv/base/parse/test/test.skipped_custom_newline_sequence.js index d531bcf3..a7534339 100644 --- a/dsv/base/parse/test/test.skipped_custom_newline_sequence.js +++ b/dsv/base/parse/test/test.skipped_custom_newline_sequence.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_custom_newline_sequence.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_custom_quote.js b/dsv/base/parse/test/test.skipped_custom_quote.js index bd3b538b..e96674d6 100644 --- a/dsv/base/parse/test/test.skipped_custom_quote.js +++ b/dsv/base/parse/test/test.skipped_custom_quote.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_custom_quote.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_custom_quote_sequence.js b/dsv/base/parse/test/test.skipped_custom_quote_sequence.js index 6c4064e5..0538b23e 100644 --- a/dsv/base/parse/test/test.skipped_custom_quote_sequence.js +++ b/dsv/base/parse/test/test.skipped_custom_quote_sequence.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_custom_quote_sequence.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_custom_quoted_field_with_escape.js b/dsv/base/parse/test/test.skipped_custom_quoted_field_with_escape.js index 57c54a58..7a6231c2 100644 --- a/dsv/base/parse/test/test.skipped_custom_quoted_field_with_escape.js +++ b/dsv/base/parse/test/test.skipped_custom_quoted_field_with_escape.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_custom_quoted_field_with_escape.json' tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_doublequote.js b/dsv/base/parse/test/test.skipped_doublequote.js index 1fff10f9..b02c1b68 100644 --- a/dsv/base/parse/test/test.skipped_doublequote.js +++ b/dsv/base/parse/test/test.skipped_doublequote.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_doublequote.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_doublequote_custom_quote.js b/dsv/base/parse/test/test.skipped_doublequote_custom_quote.js index 4898b18b..171e000f 100644 --- a/dsv/base/parse/test/test.skipped_doublequote_custom_quote.js +++ b/dsv/base/parse/test/test.skipped_doublequote_custom_quote.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_doublequote_custom_quote.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_empty_fields.js b/dsv/base/parse/test/test.skipped_empty_fields.js index 234dc586..bfa9e6f7 100644 --- a/dsv/base/parse/test/test.skipped_empty_fields.js +++ b/dsv/base/parse/test/test.skipped_empty_fields.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_empty_fields.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_empty_leading_fields.js b/dsv/base/parse/test/test.skipped_empty_leading_fields.js index 013898e4..0eed5f96 100644 --- a/dsv/base/parse/test/test.skipped_empty_leading_fields.js +++ b/dsv/base/parse/test/test.skipped_empty_leading_fields.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_empty_leading_fields.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_empty_quoted_fields.js b/dsv/base/parse/test/test.skipped_empty_quoted_fields.js index 5dfe27be..0d56334d 100644 --- a/dsv/base/parse/test/test.skipped_empty_quoted_fields.js +++ b/dsv/base/parse/test/test.skipped_empty_quoted_fields.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_empty_quoted_fields.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_empty_trailing_fields.js b/dsv/base/parse/test/test.skipped_empty_trailing_fields.js index 0eaa09fe..fa0e2fa9 100644 --- a/dsv/base/parse/test/test.skipped_empty_trailing_fields.js +++ b/dsv/base/parse/test/test.skipped_empty_trailing_fields.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_empty_trailing_fields.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_field_leading_and_trailing_whitespace.js b/dsv/base/parse/test/test.skipped_field_leading_and_trailing_whitespace.js index c9334b08..a42b2899 100644 --- a/dsv/base/parse/test/test.skipped_field_leading_and_trailing_whitespace.js +++ b/dsv/base/parse/test/test.skipped_field_leading_and_trailing_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_field_leading_and_trailing_whitespace tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_field_leading_whitespace.js b/dsv/base/parse/test/test.skipped_field_leading_whitespace.js index 30a5f56e..ad3f5d24 100644 --- a/dsv/base/parse/test/test.skipped_field_leading_whitespace.js +++ b/dsv/base/parse/test/test.skipped_field_leading_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_field_leading_whitespace.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_field_trailing_whitespace.js b/dsv/base/parse/test/test.skipped_field_trailing_whitespace.js index 83e475d6..410923c8 100644 --- a/dsv/base/parse/test/test.skipped_field_trailing_whitespace.js +++ b/dsv/base/parse/test/test.skipped_field_trailing_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_field_trailing_whitespace.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_json.js b/dsv/base/parse/test/test.skipped_json.js index 71872873..e8feafbe 100644 --- a/dsv/base/parse/test/test.skipped_json.js +++ b/dsv/base/parse/test/test.skipped_json.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_json.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_no_quoted_fields.js b/dsv/base/parse/test/test.skipped_no_quoted_fields.js index 9d3999e2..5b1c05a2 100644 --- a/dsv/base/parse/test/test.skipped_no_quoted_fields.js +++ b/dsv/base/parse/test/test.skipped_no_quoted_fields.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_no_quoted_fields.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_quoted_field_leading_and_trailing_whitespace.js b/dsv/base/parse/test/test.skipped_quoted_field_leading_and_trailing_whitespace.js index 42637a84..94fbd315 100644 --- a/dsv/base/parse/test/test.skipped_quoted_field_leading_and_trailing_whitespace.js +++ b/dsv/base/parse/test/test.skipped_quoted_field_leading_and_trailing_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_quoted_field_leading_and_trailing_whi tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_quoted_field_leading_whitespace.js b/dsv/base/parse/test/test.skipped_quoted_field_leading_whitespace.js index 9a813510..95d0b46c 100644 --- a/dsv/base/parse/test/test.skipped_quoted_field_leading_whitespace.js +++ b/dsv/base/parse/test/test.skipped_quoted_field_leading_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_quoted_field_leading_whitespace.json' tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_quoted_field_trailing_whitespace.js b/dsv/base/parse/test/test.skipped_quoted_field_trailing_whitespace.js index 220cd58f..4bd72444 100644 --- a/dsv/base/parse/test/test.skipped_quoted_field_trailing_whitespace.js +++ b/dsv/base/parse/test/test.skipped_quoted_field_trailing_whitespace.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_quoted_field_trailing_whitespace.json tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_quoted_field_with_delimiter.js b/dsv/base/parse/test/test.skipped_quoted_field_with_delimiter.js index fec86ef6..ee24b553 100644 --- a/dsv/base/parse/test/test.skipped_quoted_field_with_delimiter.js +++ b/dsv/base/parse/test/test.skipped_quoted_field_with_delimiter.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_quoted_field_with_delimiter.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_quoted_field_with_escape.js b/dsv/base/parse/test/test.skipped_quoted_field_with_escape.js index ad692a49..ae3ca3cd 100644 --- a/dsv/base/parse/test/test.skipped_quoted_field_with_escape.js +++ b/dsv/base/parse/test/test.skipped_quoted_field_with_escape.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_quoted_field_with_escape.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_quoted_field_with_escaped_quote.js b/dsv/base/parse/test/test.skipped_quoted_field_with_escaped_quote.js index bbc5b737..dfdc2e15 100644 --- a/dsv/base/parse/test/test.skipped_quoted_field_with_escaped_quote.js +++ b/dsv/base/parse/test/test.skipped_quoted_field_with_escaped_quote.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_quoted_field_with_escaped_quote.json' tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.skipped_quoted_field_with_newline.js b/dsv/base/parse/test/test.skipped_quoted_field_with_newline.js index d36ed5d6..5e1f17a2 100644 --- a/dsv/base/parse/test/test.skipped_quoted_field_with_newline.js +++ b/dsv/base/parse/test/test.skipped_quoted_field_with_newline.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/skipped_quoted_field_with_newline.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.small.js b/dsv/base/parse/test/test.small.js index 196d7e7b..2717ca75 100644 --- a/dsv/base/parse/test/test.small.js +++ b/dsv/base/parse/test/test.small.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/small.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.ssi.js b/dsv/base/parse/test/test.ssi.js index 0cb756f9..8a5e4d33 100644 --- a/dsv/base/parse/test/test.ssi.js +++ b/dsv/base/parse/test/test.ssi.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/ssi_state_eligibility_2010.crlf.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.unicode1.js b/dsv/base/parse/test/test.unicode1.js index 051262e9..92839353 100644 --- a/dsv/base/parse/test/test.unicode1.js +++ b/dsv/base/parse/test/test.unicode1.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/unicode1.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.unicode2.js b/dsv/base/parse/test/test.unicode2.js index 47e48967..26866ad1 100644 --- a/dsv/base/parse/test/test.unicode2.js +++ b/dsv/base/parse/test/test.unicode2.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/unicode2.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.utf8.js b/dsv/base/parse/test/test.utf8.js index 7bec1038..1a2e737c 100644 --- a/dsv/base/parse/test/test.utf8.js +++ b/dsv/base/parse/test/test.utf8.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/utf8.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/parse/test/test.va.js b/dsv/base/parse/test/test.va.js index c302513d..3dfcaf7d 100644 --- a/dsv/base/parse/test/test.va.js +++ b/dsv/base/parse/test/test.va.js @@ -33,7 +33,7 @@ var fixture = require( './fixtures/veterans_affairs_geographic_distribution_of_e tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof Parser, 'function', 'main export is a function' ); + t.strictEqual( typeof Parser, 'function', 'main export is a function' ); t.end(); }); diff --git a/dsv/base/test/test.js b/dsv/base/test/test.js index cbba1339..595b0610 100644 --- a/dsv/base/test/test.js +++ b/dsv/base/test/test.js @@ -29,7 +29,7 @@ var ns = require( './../lib' ); tape( 'main export is an object', function test( t ) { t.ok( true, __filename ); - t.equal( typeof ns, 'object', 'main export is an object' ); + t.strictEqual( typeof ns, 'object', 'main export is an object' ); t.end(); }); diff --git a/dsv/test/test.js b/dsv/test/test.js index 3f607580..94d1511b 100644 --- a/dsv/test/test.js +++ b/dsv/test/test.js @@ -29,7 +29,7 @@ var ns = require( './../lib' ); tape( 'main export is an object', function test( t ) { t.ok( true, __filename ); - t.equal( typeof ns, 'object', 'main export is an object' ); + t.strictEqual( typeof ns, 'object', 'main export is an object' ); t.end(); }); diff --git a/eval/test/test.js b/eval/test/test.js index 262c9619..ab98c591 100644 --- a/eval/test/test.js +++ b/eval/test/test.js @@ -28,7 +28,7 @@ var evil = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof evil, 'function', 'main export is a function' ); + t.strictEqual( typeof evil, 'function', 'main export is a function' ); t.end(); }); diff --git a/extname/test/test.js b/extname/test/test.js index 740fa9ad..70093ab1 100644 --- a/extname/test/test.js +++ b/extname/test/test.js @@ -28,7 +28,7 @@ var extname = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof extname, 'function', 'main export is a function' ); + t.strictEqual( typeof extname, 'function', 'main export is a function' ); t.end(); }); diff --git a/find/test/test.js b/find/test/test.js index 1ffaf4c2..fd6c6231 100644 --- a/find/test/test.js +++ b/find/test/test.js @@ -30,7 +30,7 @@ var find = require( './../lib' ); // eslint-disable-line stdlib/no-redeclare tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof find, 'function', 'main export is a function' ); + t.strictEqual( typeof find, 'function', 'main export is a function' ); t.end(); }); diff --git a/flatten-array/test/test.factory.js b/flatten-array/test/test.factory.js index 7bb4d801..05c9c608 100644 --- a/flatten-array/test/test.factory.js +++ b/flatten-array/test/test.factory.js @@ -31,7 +31,7 @@ var factory = require( './../lib/factory.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof factory, 'function', 'main export is a function' ); + t.strictEqual( typeof factory, 'function', 'main export is a function' ); t.end(); }); diff --git a/flatten-array/test/test.js b/flatten-array/test/test.js index b4333d61..3635dbcc 100644 --- a/flatten-array/test/test.js +++ b/flatten-array/test/test.js @@ -28,7 +28,7 @@ var flattenArray = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof flattenArray, 'function', 'main export is a function' ); + t.strictEqual( typeof flattenArray, 'function', 'main export is a function' ); t.end(); }); diff --git a/flatten-array/test/test.main.js b/flatten-array/test/test.main.js index f70837bf..22a2e5b5 100644 --- a/flatten-array/test/test.main.js +++ b/flatten-array/test/test.main.js @@ -29,7 +29,7 @@ var flattenArray = require( './../lib/main.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof flattenArray, 'function', 'main export is a function' ); + t.strictEqual( typeof flattenArray, 'function', 'main export is a function' ); t.end(); }); diff --git a/flatten-array/test/test.validate.js b/flatten-array/test/test.validate.js index b434ef70..09c8de4f 100644 --- a/flatten-array/test/test.validate.js +++ b/flatten-array/test/test.validate.js @@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof validate, 'function', 'main export is a function' ); + t.strictEqual( typeof validate, 'function', 'main export is a function' ); t.end(); }); diff --git a/flatten-object/test/test.factory.js b/flatten-object/test/test.factory.js index 5e0edbc8..7a66e51f 100644 --- a/flatten-object/test/test.factory.js +++ b/flatten-object/test/test.factory.js @@ -30,7 +30,7 @@ var factory = require( './../lib/factory.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof factory, 'function', 'main export is a function' ); + t.strictEqual( typeof factory, 'function', 'main export is a function' ); t.end(); }); diff --git a/flatten-object/test/test.js b/flatten-object/test/test.js index 25b4f69d..c616b899 100644 --- a/flatten-object/test/test.js +++ b/flatten-object/test/test.js @@ -28,7 +28,7 @@ var flattenObject = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof flattenObject, 'function', 'main export is a function' ); + t.strictEqual( typeof flattenObject, 'function', 'main export is a function' ); t.end(); }); diff --git a/flatten-object/test/test.main.js b/flatten-object/test/test.main.js index 93a159d3..2a33f31b 100644 --- a/flatten-object/test/test.main.js +++ b/flatten-object/test/test.main.js @@ -30,7 +30,7 @@ var flattenObject = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof flattenObject, 'function', 'main export is a function' ); + t.strictEqual( typeof flattenObject, 'function', 'main export is a function' ); t.end(); }); diff --git a/flatten-object/test/test.validate.js b/flatten-object/test/test.validate.js index 7b354585..8cd82a5f 100644 --- a/flatten-object/test/test.validate.js +++ b/flatten-object/test/test.validate.js @@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof validate, 'function', 'main export is a function' ); + t.strictEqual( typeof validate, 'function', 'main export is a function' ); t.end(); }); diff --git a/function-name/test/test.js b/function-name/test/test.js index cd5294de..cfd3e084 100644 --- a/function-name/test/test.js +++ b/function-name/test/test.js @@ -34,7 +34,7 @@ var functionName = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof functionName, 'function', 'export is a function' ); + t.strictEqual( typeof functionName, 'function', 'export is a function' ); t.end(); }); diff --git a/function-sequence/test/test.js b/function-sequence/test/test.js index 53f98479..cd59d4a6 100644 --- a/function-sequence/test/test.js +++ b/function-sequence/test/test.js @@ -29,7 +29,7 @@ var funseq = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof funseq, 'function', 'main export is a function' ); + t.strictEqual( typeof funseq, 'function', 'main export is a function' ); t.end(); }); diff --git a/get-prototype-of/test/test.js b/get-prototype-of/test/test.js index 9fe9dce0..d8d36967 100644 --- a/get-prototype-of/test/test.js +++ b/get-prototype-of/test/test.js @@ -32,7 +32,7 @@ var getPrototypeOf = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof getPrototypeOf, 'function', 'export is a function' ); + t.strictEqual( typeof getPrototypeOf, 'function', 'export is a function' ); t.end(); }); diff --git a/get-prototype-of/test/test.native.js b/get-prototype-of/test/test.native.js index c664b746..51adf66a 100644 --- a/get-prototype-of/test/test.native.js +++ b/get-prototype-of/test/test.native.js @@ -32,7 +32,7 @@ var getPrototypeOf = require( './../lib/native.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof getPrototypeOf, 'function', 'export is a function' ); + t.strictEqual( typeof getPrototypeOf, 'function', 'export is a function' ); t.end(); }); diff --git a/get-prototype-of/test/test.polyfill.js b/get-prototype-of/test/test.polyfill.js index fb36d221..16935d08 100644 --- a/get-prototype-of/test/test.polyfill.js +++ b/get-prototype-of/test/test.polyfill.js @@ -33,7 +33,7 @@ var getPrototypeOf = require( './../lib/polyfill.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof getPrototypeOf, 'function', 'export is a function' ); + t.strictEqual( typeof getPrototypeOf, 'function', 'export is a function' ); t.end(); }); diff --git a/identity-function/test/test.js b/identity-function/test/test.js index 73f4cf3e..a70e6e8c 100644 --- a/identity-function/test/test.js +++ b/identity-function/test/test.js @@ -28,7 +28,7 @@ var identity = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof identity, 'function', 'main export is a function' ); + t.strictEqual( typeof identity, 'function', 'main export is a function' ); t.end(); }); diff --git a/index-of/test/test.js b/index-of/test/test.js index cb63ff56..5c39f8cc 100644 --- a/index-of/test/test.js +++ b/index-of/test/test.js @@ -28,7 +28,7 @@ var indexOf = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof indexOf, 'function', 'main export is a function' ); + t.strictEqual( typeof indexOf, 'function', 'main export is a function' ); t.end(); }); diff --git a/inherit/test/test.detect.js b/inherit/test/test.detect.js index 0b9ec9d6..12cacda4 100644 --- a/inherit/test/test.detect.js +++ b/inherit/test/test.detect.js @@ -30,7 +30,7 @@ var createObject = require( './../lib/detect.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof createObject, 'function', 'main export is a function' ); + t.strictEqual( typeof createObject, 'function', 'main export is a function' ); t.end(); }); diff --git a/inherit/test/test.js b/inherit/test/test.js index 382aa86a..381762cc 100644 --- a/inherit/test/test.js +++ b/inherit/test/test.js @@ -29,7 +29,7 @@ var inherit = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof inherit, 'function', 'main export is a function' ); + t.strictEqual( typeof inherit, 'function', 'main export is a function' ); t.end(); }); diff --git a/inherit/test/test.polyfill.js b/inherit/test/test.polyfill.js index 6e5b66f7..9f605166 100644 --- a/inherit/test/test.polyfill.js +++ b/inherit/test/test.polyfill.js @@ -29,7 +29,7 @@ var createObject = require( './../lib/polyfill.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof createObject, 'function', 'main export is a function' ); + t.strictEqual( typeof createObject, 'function', 'main export is a function' ); t.end(); }); diff --git a/memoize/test/test.js b/memoize/test/test.js index ee7738ba..71c447fc 100644 --- a/memoize/test/test.js +++ b/memoize/test/test.js @@ -33,7 +33,7 @@ var memoize = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof memoize, 'function', 'main export is a function' ); + t.strictEqual( typeof memoize, 'function', 'main export is a function' ); t.end(); }); diff --git a/merge/test/test.defaults.js b/merge/test/test.defaults.js index 160e927d..e477d20d 100644 --- a/merge/test/test.defaults.js +++ b/merge/test/test.defaults.js @@ -28,7 +28,7 @@ var defaults = require( './../lib/defaults.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof defaults, 'function', 'export is a function' ); + t.strictEqual( typeof defaults, 'function', 'export is a function' ); t.end(); }); diff --git a/merge/test/test.factory.js b/merge/test/test.factory.js index 1c5c71ef..f377ca71 100644 --- a/merge/test/test.factory.js +++ b/merge/test/test.factory.js @@ -44,7 +44,7 @@ function setup() { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof factory, 'function', 'export is a function' ); + t.strictEqual( typeof factory, 'function', 'export is a function' ); t.end(); }); diff --git a/merge/test/test.js b/merge/test/test.js index f4ebabca..dc32da46 100644 --- a/merge/test/test.js +++ b/merge/test/test.js @@ -28,7 +28,7 @@ var merge = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof merge, 'function', 'export is a function' ); + t.strictEqual( typeof merge, 'function', 'export is a function' ); t.end(); }); diff --git a/merge/test/test.main.js b/merge/test/test.main.js index fc74f897..9e2f4612 100644 --- a/merge/test/test.main.js +++ b/merge/test/test.main.js @@ -33,7 +33,7 @@ var merge = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof merge, 'function', 'export is a function' ); + t.strictEqual( typeof merge, 'function', 'export is a function' ); t.end(); }); diff --git a/merge/test/test.validate.js b/merge/test/test.validate.js index baaaa39f..430ae884 100644 --- a/merge/test/test.validate.js +++ b/merge/test/test.validate.js @@ -29,7 +29,7 @@ var validate = require( './../lib/validate.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof validate, 'function', 'export is a function' ); + t.strictEqual( typeof validate, 'function', 'export is a function' ); t.end(); }); diff --git a/move-property/test/test.js b/move-property/test/test.js index 11e22273..d0ca25af 100644 --- a/move-property/test/test.js +++ b/move-property/test/test.js @@ -31,7 +31,7 @@ var moveProperty = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof moveProperty, 'function', 'export is a function' ); + t.strictEqual( typeof moveProperty, 'function', 'export is a function' ); t.end(); }); diff --git a/noop/test/test.js b/noop/test/test.js index f5684b27..0ba63104 100644 --- a/noop/test/test.js +++ b/noop/test/test.js @@ -28,7 +28,7 @@ var noop = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof noop, 'function', 'main export is a function' ); + t.strictEqual( typeof noop, 'function', 'main export is a function' ); t.end(); }); diff --git a/object-inverse-by/test/test.js b/object-inverse-by/test/test.js index a411e4ca..9f4c7cad 100644 --- a/object-inverse-by/test/test.js +++ b/object-inverse-by/test/test.js @@ -29,7 +29,7 @@ var invertBy = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof invertBy, 'function', 'main export is a function' ); + t.strictEqual( typeof invertBy, 'function', 'main export is a function' ); t.end(); }); diff --git a/object-inverse/test/test.js b/object-inverse/test/test.js index 0182c6cb..abac4a13 100644 --- a/object-inverse/test/test.js +++ b/object-inverse/test/test.js @@ -28,7 +28,7 @@ var invert = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof invert, 'function', 'main export is a function' ); + t.strictEqual( typeof invert, 'function', 'main export is a function' ); t.end(); }); diff --git a/open-url/test/test.browser.js b/open-url/test/test.browser.js index b1f606ba..f2088318 100644 --- a/open-url/test/test.browser.js +++ b/open-url/test/test.browser.js @@ -31,7 +31,7 @@ var openURL = require( './../lib/browser.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof openURL, 'function', 'main export is a function' ); + t.strictEqual( typeof openURL, 'function', 'main export is a function' ); t.end(); }); diff --git a/open-url/test/test.js b/open-url/test/test.js index dbbf6368..bb73870f 100644 --- a/open-url/test/test.js +++ b/open-url/test/test.js @@ -38,7 +38,7 @@ var opts = { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof openURL, 'function', 'main export is a function' ); + t.strictEqual( typeof openURL, 'function', 'main export is a function' ); t.end(); }); diff --git a/papply-right/test/test.js b/papply-right/test/test.js index 71eba37f..74cfc82c 100644 --- a/papply-right/test/test.js +++ b/papply-right/test/test.js @@ -35,7 +35,7 @@ function say( text, name ) { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof papplyRight, 'function', 'main export is a function' ); + t.strictEqual( typeof papplyRight, 'function', 'main export is a function' ); t.end(); }); diff --git a/papply/test/test.js b/papply/test/test.js index 6ccfe609..71f6661a 100644 --- a/papply/test/test.js +++ b/papply/test/test.js @@ -35,7 +35,7 @@ function add( x, y ) { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof papply, 'function', 'main export is a function' ); + t.strictEqual( typeof papply, 'function', 'main export is a function' ); t.end(); }); diff --git a/parallel/test/test.js b/parallel/test/test.js index c1d463d7..552fbb73 100644 --- a/parallel/test/test.js +++ b/parallel/test/test.js @@ -28,6 +28,6 @@ var parallel = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof parallel, 'function', 'main export is a function' ); + t.strictEqual( typeof parallel, 'function', 'main export is a function' ); t.end(); }); diff --git a/parallel/test/test.main.js b/parallel/test/test.main.js index a92377db..1b7b2c4d 100644 --- a/parallel/test/test.main.js +++ b/parallel/test/test.main.js @@ -45,7 +45,7 @@ function files() { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof parallel, 'function', 'main export is a function' ); + t.strictEqual( typeof parallel, 'function', 'main export is a function' ); t.end(); }); diff --git a/parallel/test/test.node.env.js b/parallel/test/test.node.env.js index 987d11f0..7631f624 100644 --- a/parallel/test/test.node.env.js +++ b/parallel/test/test.node.env.js @@ -42,7 +42,7 @@ function getOpts() { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof env, 'function', 'main export is a function' ); + t.strictEqual( typeof env, 'function', 'main export is a function' ); t.end(); }); diff --git a/parallel/test/test.node.exec.js b/parallel/test/test.node.exec.js index 35ffa446..13672144 100644 --- a/parallel/test/test.node.exec.js +++ b/parallel/test/test.node.exec.js @@ -80,7 +80,7 @@ function files() { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof exec, 'function', 'main export is a function' ); + t.strictEqual( typeof exec, 'function', 'main export is a function' ); t.end(); }); diff --git a/parallel/test/test.node.options.js b/parallel/test/test.node.options.js index 32ace1c8..e63c8e36 100644 --- a/parallel/test/test.node.options.js +++ b/parallel/test/test.node.options.js @@ -42,7 +42,7 @@ function options() { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof getOpts, 'function', 'main export is a function' ); + t.strictEqual( typeof getOpts, 'function', 'main export is a function' ); t.end(); }); diff --git a/parallel/test/test.node.worker.close.js b/parallel/test/test.node.worker.close.js index caab58ba..c1ec3d52 100644 --- a/parallel/test/test.node.worker.close.js +++ b/parallel/test/test.node.worker.close.js @@ -38,7 +38,7 @@ function database() { tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof closeProcess, 'function', 'main export is a function' ); + t.strictEqual( typeof closeProcess, 'function', 'main export is a function' ); t.end(); }); diff --git a/parallel/test/test.node.worker.exec.js b/parallel/test/test.node.worker.exec.js index 9bd07b5b..02a060c3 100644 --- a/parallel/test/test.node.worker.exec.js +++ b/parallel/test/test.node.worker.exec.js @@ -32,7 +32,7 @@ var exec = require( './../lib/node/worker/exec.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof exec, 'function', 'main export is a function' ); + t.strictEqual( typeof exec, 'function', 'main export is a function' ); t.end(); }); diff --git a/parallel/test/test.node.worker.spawn.js b/parallel/test/test.node.worker.spawn.js index 2c4c5e43..216ceb01 100644 --- a/parallel/test/test.node.worker.spawn.js +++ b/parallel/test/test.node.worker.spawn.js @@ -42,7 +42,7 @@ Mock.prototype.constructor = Mock; tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof spawn, 'function', 'main export is a function' ); + t.strictEqual( typeof spawn, 'function', 'main export is a function' ); t.end(); }); diff --git a/parallel/test/test.node.worker.worker.js b/parallel/test/test.node.worker.worker.js index a04f1e40..1fd6ca24 100644 --- a/parallel/test/test.node.worker.worker.js +++ b/parallel/test/test.node.worker.worker.js @@ -47,7 +47,7 @@ Proc.prototype.send = function send() {}; tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof worker, 'function', 'main export is a function' ); + t.strictEqual( typeof worker, 'function', 'main export is a function' ); t.end(); }); diff --git a/parallel/test/test.validate.js b/parallel/test/test.validate.js index 71365ca9..16ccf76f 100644 --- a/parallel/test/test.validate.js +++ b/parallel/test/test.validate.js @@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof validate, 'function', 'main export is a function' ); + t.strictEqual( typeof validate, 'function', 'main export is a function' ); t.end(); }); diff --git a/parse-json/test/test.js b/parse-json/test/test.js index e1abb070..3ed0b058 100644 --- a/parse-json/test/test.js +++ b/parse-json/test/test.js @@ -29,7 +29,7 @@ var parseJSON = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof parseJSON, 'function', 'main export is a function' ); + t.strictEqual( typeof parseJSON, 'function', 'main export is a function' ); t.end(); }); diff --git a/regexp-from-string/test/test.js b/regexp-from-string/test/test.js index b1c13bb6..ad88c034 100644 --- a/regexp-from-string/test/test.js +++ b/regexp-from-string/test/test.js @@ -28,7 +28,7 @@ var reFromString = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof reFromString, 'function', 'main export is a function' ); + t.strictEqual( typeof reFromString, 'function', 'main export is a function' ); t.end(); }); diff --git a/test/test.js b/test/test.js index 6e774801..8d61ff41 100644 --- a/test/test.js +++ b/test/test.js @@ -29,7 +29,7 @@ var utils = require( './../lib' ); tape( 'main export is an object', function test( t ) { t.ok( true, __filename ); - t.equal( typeof utils, 'object', 'main export is an object' ); + t.strictEqual( typeof utils, 'object', 'main export is an object' ); t.end(); }); diff --git a/thunk/test/test.js b/thunk/test/test.js index e3cd75ea..4bcfb332 100644 --- a/thunk/test/test.js +++ b/thunk/test/test.js @@ -30,7 +30,7 @@ var thunk = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof thunk, 'function', 'main export is a function' ); + t.strictEqual( typeof thunk, 'function', 'main export is a function' ); t.end(); }); diff --git a/timeit/test/test.validate.js b/timeit/test/test.validate.js index 40f9a981..68bac5ef 100644 --- a/timeit/test/test.validate.js +++ b/timeit/test/test.validate.js @@ -28,7 +28,7 @@ var validate = require( './../lib/validate.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof validate, 'function', 'main export is a function' ); + t.strictEqual( typeof validate, 'function', 'main export is a function' ); t.end(); }); diff --git a/type-of/test/test.check.js b/type-of/test/test.check.js index 7fae28cc..e89d8df9 100644 --- a/type-of/test/test.check.js +++ b/type-of/test/test.check.js @@ -34,7 +34,7 @@ function noop() {} tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof check, 'function', 'export is a function' ); + t.strictEqual( typeof check, 'function', 'export is a function' ); t.end(); }); diff --git a/type-of/test/test.js b/type-of/test/test.js index ca6c49de..22eb19bb 100644 --- a/type-of/test/test.js +++ b/type-of/test/test.js @@ -52,7 +52,7 @@ var typeOf = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof typeOf, 'function', 'export is a function' ); + t.strictEqual( typeof typeOf, 'function', 'export is a function' ); t.end(); }); diff --git a/type-of/test/test.main.js b/type-of/test/test.main.js index 93ac7cad..5b22825f 100644 --- a/type-of/test/test.main.js +++ b/type-of/test/test.main.js @@ -49,7 +49,7 @@ var typeOf = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof typeOf, 'function', 'export is a function' ); + t.strictEqual( typeof typeOf, 'function', 'export is a function' ); t.end(); }); diff --git a/type-of/test/test.polyfill.js b/type-of/test/test.polyfill.js index b9088aea..11dfa5c0 100644 --- a/type-of/test/test.polyfill.js +++ b/type-of/test/test.polyfill.js @@ -49,7 +49,7 @@ var typeOf = require( './../lib/polyfill.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof typeOf, 'function', 'export is a function' ); + t.strictEqual( typeof typeOf, 'function', 'export is a function' ); t.end(); }); diff --git a/unzip/test/test.js b/unzip/test/test.js index d0f3de55..f97d0078 100644 --- a/unzip/test/test.js +++ b/unzip/test/test.js @@ -28,7 +28,7 @@ var unzip = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof unzip, 'function', 'main export is a function' ); + t.strictEqual( typeof unzip, 'function', 'main export is a function' ); t.end(); }); diff --git a/zip/test/test.js b/zip/test/test.js index 8ac95466..2df01f84 100644 --- a/zip/test/test.js +++ b/zip/test/test.js @@ -28,7 +28,7 @@ var zip = require( './../lib' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof zip, 'function', 'main export is a function' ); + t.strictEqual( typeof zip, 'function', 'main export is a function' ); t.end(); });