Skip to content

Commit 61e8f55

Browse files
committed
FIX tests
1 parent 5a45506 commit 61e8f55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

javascript/src/truth-table-generator/calculate-bdd-quality.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export async function measurePerformanceOfStateFunctions(
135135
}
136136

137137
if (remainingRounds % 10 === 0) {
138-
console.log('.. ' + remainingRounds);
138+
// console.log('.. ' + remainingRounds);
139139
await wait(50);
140140
}
141141
}

javascript/test/unit/calculate-bdd-quality.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe('calculate-bdd-quality.test.ts', () => {
4242

4343
describe('.measurePerformanceOfStateFunctions()', () => {
4444
it('should give valid results', async () => {
45-
const res = await measurePerformanceOfStateFunctions(10000);
45+
const res = await measurePerformanceOfStateFunctions(10);
4646
orderedStateList.forEach(k => {
4747
assert.ok(res[k]);
4848
assert.ok(res[k] > 0);

0 commit comments

Comments
 (0)