mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-13 14:12:12 +00:00
Upgrade buildroot to 2023.05 (from 2021.08.2), kernel is upgraded to 6.3 (from 5.13.19).
This commit is contained in:
7
support/testing/tests/package/sample_nodejs_module.js
Normal file
7
support/testing/tests/package/sample_nodejs_module.js
Normal file
@@ -0,0 +1,7 @@
|
||||
var assert = require('assert');
|
||||
var lodash = require('lodash');
|
||||
result = lodash.chunk(['a', 'b', 'c', 'd'], 2);
|
||||
expected = [ [ 'a', 'b' ], [ 'c', 'd' ] ];
|
||||
assert.deepStrictEqual(result, expected)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user