UNPKG

237 BJavaScriptView Raw
1const expect = require('expect.js');
2const clusterService = require('../services/cluster.js');
3
4describe('Cluster Service', function(){
5 it('Worker ID detection', function(){
6 expect(clusterService.workerId()).to.equal(1);
7 });
8});