Skip to content
Snippets Groups Projects

Avoid usage of toBeTruthy/toBeFalsy in /project_rules_spec.js

All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -126,7 +126,7 @@ describe('Approvals ProjectRules', () => {
@@ -126,7 +126,7 @@ describe('Approvals ProjectRules', () => {
const secondRow = rows.at(1);
const secondRow = rows.at(1);
const nameCell = findCell(secondRow, 'name');
const nameCell = findCell(secondRow, 'name');
expect(nameCell.find('.js-help').exists()).toBeFalsy();
expect(nameCell.find('.js-help').exists()).toBe(false);
});
});
it('should render the unconfigured-security-rules component', () => {
it('should render the unconfigured-security-rules component', () => {
Loading