mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
13 lines
267 B
JavaScript
13 lines
267 B
JavaScript
![]() |
|
||
|
var helper = require('./helper/cluster-helper');
|
||
|
|
||
|
suite('get-set-del', function() {
|
||
|
test('master', function(cb) {
|
||
|
helper.run('do-get-set-del', true, 0, 1, cb);
|
||
|
});
|
||
|
|
||
|
test('worker', function(cb) {
|
||
|
helper.run('do-get-set-del', false, 1, 1, cb);
|
||
|
});
|
||
|
});
|