Skip to content

Commit e441e57

Browse files
committed
Re-add missing "act" in tests
1 parent cd2d22d commit e441e57

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

test/unitTests/modelFactory/tableValidator.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ suite("TableValidator tests", () => {
151151
.verifiable(Times.once());
152152
const sut = createSut(selectionInterpreter.object);
153153

154+
sut.isValid("test");
154155

155156
selectionInterpreter.verifyAll();
156157
});

test/unitTests/viewModelFactories/rowViewModelFactory.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ suite("RowViewModelFactory.buildRow() tests", () => {
2121
const row = 1;
2222
const table = threeColumnTable();
2323

24+
sut.buildRow(row, table);
2425

2526
_contentPadCalculator.verify(_ => _.getLeftPadding(table, row, 0), Times.once());
2627
_contentPadCalculator.verify(_ => _.getLeftPadding(table, row, 1), Times.once());
@@ -102,6 +103,7 @@ suite("RowViewModelFactory.buildSeparator() tests", () => {
102103
new RowViewModel(["abcd", "efgh", "xyz"])
103104
];
104105

106+
sut.buildSeparator(rows, table);
105107

106108
alignmentStrategy.verifyAll();
107109
alignmentMarker.verifyAll();

0 commit comments

Comments
 (0)