implement flag edge-weight-updates-over-factor, to log edge weight
updates over provided x factor
This commit is contained in:
committed by
Moritz Kobitzsch
parent
eafe3fa928
commit
3d5a53566c
@@ -86,6 +86,10 @@ module.exports = function () {
|
||||
assert.equal(this.stdout.split('\n').length - 1, parseInt(lines));
|
||||
});
|
||||
|
||||
this.Then(/^stderr should contain (\d+) lines?$/, (lines) => {
|
||||
assert.equal(this.stderr.split('\n').length - 1, parseInt(lines));
|
||||
});
|
||||
|
||||
this.Then(/^datasource names should contain "(.+)"$/, (expectedData) => {
|
||||
var actualData = fs.readFileSync(this.processedCacheFile + '.datasource_names', {encoding:'UTF-8'}).trim().split('\n').join(',');
|
||||
assert.equal(actualData, expectedData);
|
||||
|
||||
Reference in New Issue
Block a user