Skip to content

Commit

Permalink
ut
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoyongjie committed Jun 29, 2022
1 parent 544cf4f commit c78bb1d
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,12 @@ test('getStandardizedControls', () => {
metrics: [],
columns: ['gender', 'gender'],
});
expect(getStandardizedControls().popAllColumns()).toEqual([
'gender',
'gender',
]);
expect(getStandardizedControls().shiftColumn()).toEqual('gender');
expect(getStandardizedControls().controls).toEqual({
metrics: [],
columns: ['gender'],
});
expect(getStandardizedControls().popAllColumns()).toEqual(['gender']);
expect(getStandardizedControls().controls).toEqual({
metrics: [],
columns: [],
Expand Down

0 comments on commit c78bb1d

Please sign in to comment.