Skip to content
Snippets Groups Projects
Commit 2556373e authored by Anshul Riyal's avatar Anshul Riyal :spy: Committed by Rémy Coutable
Browse files

Avoid usage of toBeTruthy/toBeFalsy in months_header_item_spec.js

parent 06e8a8d8
No related branches found
No related tags found
1 merge request!94733Avoid usage of toBeTruthy/toBeFalsy in months_header_item_spec.js
......@@ -105,7 +105,7 @@ describe('MonthsHeaderItemComponent', () => {
});
it('renders component container element with class `timeline-header-item`', () => {
expect(vm.$el.classList.contains('timeline-header-item')).toBeTruthy();
expect(vm.$el.classList.contains('timeline-header-item')).toBe(true);
});
it('renders item label element class `item-label` and value as `timelineHeaderLabel`', () => {
......
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