Skip to content
Snippets Groups Projects
Commit 208543a7 authored by Zack Cuddy's avatar Zack Cuddy 2️⃣
Browse files

Merge branch '369707-avoid-usage-of-toBeTruthy/toBeFalsy' into 'master'

Avoid usage of toBeTruthy/toBeFalsy in /project_rules_spec.js

See merge request !94886
parents fc9804e5 a4d982e4
No related branches found
No related tags found
1 merge request!94886Avoid usage of toBeTruthy/toBeFalsy in /project_rules_spec.js
Pipeline #608453249 failed
......@@ -126,7 +126,7 @@ describe('Approvals ProjectRules', () => {
const secondRow = rows.at(1);
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', () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment