diff --git a/test/bundleList.js b/test/bundleList.js index dd788576..17b38cca 100644 --- a/test/bundleList.js +++ b/test/bundleList.js @@ -179,4 +179,5 @@ tape('bundlesList tests', (test) => { process.argv[2] = previousValue; }); }); + test.end(); }); diff --git a/test/components/conformsTo.js b/test/components/conformsTo.js index c5352e67..e1676c57 100644 --- a/test/components/conformsTo.js +++ b/test/components/conformsTo.js @@ -72,5 +72,6 @@ tape('conformsTo', (test) => { }); }); + test.end(); }); diff --git a/test/components/extractFieldsTest.js b/test/components/extractFieldsTest.js index f398c58c..0fe1fe4b 100644 --- a/test/components/extractFieldsTest.js +++ b/test/components/extractFieldsTest.js @@ -761,6 +761,7 @@ tape('readStreamComponents', function(test) { }); }); + test.end(); }); @@ -1314,6 +1315,7 @@ tape('population fallback tests', (test) => { }); }); + test.end(); }); @@ -1746,5 +1748,6 @@ tape('negative population fallback tests', (test) => { }); }); + test.end(); }); diff --git a/test/components/isActiveRecordTest.js b/test/components/isActiveRecordTest.js index 12c17f02..c15e5c48 100644 --- a/test/components/isActiveRecordTest.js +++ b/test/components/isActiveRecordTest.js @@ -102,5 +102,6 @@ tape('isActiveRecord', function(test) { }); }); + test.end(); }); diff --git a/test/components/isNotNullIslandRelated.js b/test/components/isNotNullIslandRelated.js index e2fc00c4..585a1bc8 100644 --- a/test/components/isNotNullIslandRelated.js +++ b/test/components/isNotNullIslandRelated.js @@ -34,6 +34,7 @@ tape('isNotNullIslandRelated tests', (test) => { }); }); + test.end(); }); @@ -120,4 +121,5 @@ tape('recordHasName', (test) => { t.end(); }); }); + test.end(); }); diff --git a/test/components/loadJSONTest.js b/test/components/loadJSONTest.js index 122388f4..f99655aa 100644 --- a/test/components/loadJSONTest.js +++ b/test/components/loadJSONTest.js @@ -137,5 +137,6 @@ tape('loadJSON tests', (test) => { }); }); + test.end(); }); diff --git a/test/components/metadataStream.js b/test/components/metadataStream.js index d2c99941..11102f1e 100644 --- a/test/components/metadataStream.js +++ b/test/components/metadataStream.js @@ -30,11 +30,12 @@ tape('metadataStream tests', (test) => { t.deepEqual(contents, 'some metadata', 'should be equal'); t.end(); }); - + }); }); }); + test.end(); }); diff --git a/test/components/parseMetaFiles.js b/test/components/parseMetaFiles.js index a5c49eee..0bb1159b 100644 --- a/test/components/parseMetaFiles.js +++ b/test/components/parseMetaFiles.js @@ -28,5 +28,6 @@ tape('parseMetaFiles tests', (test) => { }); }); + test.end(); }); diff --git a/test/components/recordHasIdAndPropertiesTest.js b/test/components/recordHasIdAndPropertiesTest.js index e2aa499e..5c3bec57 100644 --- a/test/components/recordHasIdAndPropertiesTest.js +++ b/test/components/recordHasIdAndPropertiesTest.js @@ -37,5 +37,6 @@ tape('recordHasIdAndProperties', function(test) { t.end(); }); }); + test.end(); }); diff --git a/test/components/recordHasNameTest.js b/test/components/recordHasNameTest.js index 13d00079..5c425334 100644 --- a/test/components/recordHasNameTest.js +++ b/test/components/recordHasNameTest.js @@ -44,7 +44,6 @@ tape('recordHasName', function(test) { }); }); - - + test.end(); }); diff --git a/test/components/wofIdToPath.js b/test/components/wofIdToPath.js index f4ef18fd..a06d0b31 100644 --- a/test/components/wofIdToPath.js +++ b/test/components/wofIdToPath.js @@ -38,4 +38,6 @@ tape('wofIdToPath', (t) => { t.deepEqual(wofIdToPath(0), ['0']); t.end(); }); + t.end(); + }); diff --git a/test/hierarchyFinderTest.js b/test/hierarchyFinderTest.js index ea4338ba..e1fde256 100644 --- a/test/hierarchyFinderTest.js +++ b/test/hierarchyFinderTest.js @@ -118,5 +118,6 @@ tape('tests for looking up hierarchies', function(test) { t.end(); }); + test.end(); }); diff --git a/test/importStreamTest.js b/test/importStreamTest.js index 5982bdba..95c323d4 100644 --- a/test/importStreamTest.js +++ b/test/importStreamTest.js @@ -41,5 +41,6 @@ tape('importStream', function(test) { }); }); + test.end(); }); diff --git a/test/peliasDocGeneratorsTest.js b/test/peliasDocGeneratorsTest.js index fe078e8b..c35a9ffa 100644 --- a/test/peliasDocGeneratorsTest.js +++ b/test/peliasDocGeneratorsTest.js @@ -587,5 +587,6 @@ tape('create', function(test) { }); }); + test.end(); }); diff --git a/test/readStreamTest.js b/test/readStreamTest.js index b8a0b407..ab029490 100644 --- a/test/readStreamTest.js +++ b/test/readStreamTest.js @@ -175,5 +175,6 @@ tape('readStream', (test) => { }); }); + test.end(); }); diff --git a/test/schema.js b/test/schema.js index 9cfc564b..84303643 100644 --- a/test/schema.js +++ b/test/schema.js @@ -236,6 +236,7 @@ tape('tests for looking up hierarchies', function(test) { t.end(); }); + test.end(); }); @@ -391,5 +392,6 @@ tape('battery of importPlace tests', test => { t.end(); }); + test.end(); });