Update @balena/lint to 6.2.0

Change-type: patch
This commit is contained in:
Pagan Gazzard
2022-09-19 16:33:52 +01:00
parent a4c13aa2e9
commit 96418d55b5
60 changed files with 1432 additions and 1206 deletions

View File

@ -155,9 +155,9 @@ describe('lib/fs-utils', () => {
it("should return the paths of one or more files as they exist on host OS's root", async () => {
expect(fsUtils.getPathOnHost(testFileName1)).to.deep.equal(testFile1);
expect(
fsUtils.getPathOnHost(testFileName1, testFileName2),
).to.deep.equal([testFile1, testFile2]);
expect(fsUtils.getPathOnHost(testFileName1, testFileName2)).to.deep.equal(
[testFile1, testFile2],
);
});
});