Skip to content

Commit c718143

Browse files
committed
feat: add new test
--- 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: missing_dependencies - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 8bd9e47 commit c718143

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stdlib - OSS Development",
3-
"image": "mcr.microsoft.com/devcontainers/universal:2",
3+
"image": "mcr.microsoft.com/devcontainers/javascript-node",
44
"features": {
55
"ghcr.io/rocker-org/devcontainer-features/r-apt:0": {},
66
"ghcr.io/julialang/devcontainer-features/julia:1": {},

.devcontainer/post-create

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ make init
2424
sudo apt-get update
2525
sudo apt-get install -y gfortran
2626

27-
make install-deps-r
27+
#make install-deps-r

lib/node_modules/@stdlib/boolean/test/test.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,9 @@ tape( 'the exported object contains key-value pairs', function test( t ) {
3838
t.equal( keys.length > 0, true, 'has keys' );
3939
t.end();
4040
});
41+
42+
tape( 'the exported object contains key-value pairs', function test( t ) {
43+
var keys = objectKeys( ns );
44+
t.equal( keys.length > 0, true, 'has keys' );
45+
t.end();
46+
});

0 commit comments

Comments
 (0)