Skip to content

Commit c9769bb

Browse files
committed
test: add missing file printout
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 0c06190 commit c9769bb

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

lib/node_modules/@stdlib/utils/pluck/test/test.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var pluck = require( './../lib' );
2828
// TESTS //
2929

3030
tape( 'main export is a function', function test( t ) {
31+
t.ok( true, __filename );
3132
t.equal( typeof pluck, 'function', 'main export is a function' );
3233
t.end();
3334
});
@@ -204,7 +205,6 @@ tape( 'the function supports non-string property values', function test( t ) {
204205
});
205206

206207
tape( 'the function does not deep copy plucked values', function test( t ) {
207-
/* eslint-disable object-curly-newline */
208208
var expected;
209209
var actual;
210210
var arr;
@@ -221,7 +221,14 @@ tape( 'the function does not deep copy plucked values', function test( t ) {
221221
}
222222
}
223223
];
224-
expected = [ { 'b': 2 }, { 'b': 3 } ];
224+
expected = [
225+
{
226+
'b': 2
227+
},
228+
{
229+
'b': 3
230+
}
231+
];
225232

226233
actual = pluck( arr, 'a' );
227234

lib/node_modules/@stdlib/utils/pluck/test/test.validate.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var validate = require( './../lib/validate.js' );
2727
// TESTS //
2828

2929
tape( 'main export is a function', function test( t ) {
30+
t.ok( true, __filename );
3031
t.equal( typeof validate, 'function', 'main export is a function' );
3132
t.end();
3233
});

0 commit comments

Comments
 (0)