Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50660 views
1
var assert = require('assert'),
2
vows = require('vows'),
3
broadway = require('broadway'),
4
flatiron = require('../');
5
6
vows.describe('flatiron').addBatch({
7
'When using `flatiron`': {
8
'`flatiron.plugins`': {
9
topic: flatiron.plugins,
10
'should contain all `broadway.plugins`': function (plugins) {
11
Object.keys(broadway.plugins).forEach(function (key) {
12
assert.include(plugins, key);
13
});
14
}
15
}
16
}
17
}).export(module);
18
19
20