Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaskatz96 authored Nov 4, 2024
1 parent 0144a9f commit 31192fc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/unit/helper-specs.js
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,7 @@ describe('helpers', withMocks({fs}, function (mocks) {
});
it('test invalid activity name', function () {
const activity = "User@123";

Check failure on line 482 in test/unit/helper-specs.js

View workflow job for this annotation

GitHub Actions / test (20)

Strings must use singlequote
const result = String(matchComponentName(activity));
result.should.be.eql('null');
_.isNull(matchComponentName(activity)).should.be.true;
});
});
}));

0 comments on commit 31192fc

Please sign in to comment.