Skip to content
This repository was archived by the owner on Feb 9, 2021. It is now read-only.

Commit 2cf4531

Browse files
committed
run lint
1 parent dd324cc commit 2cf4531

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__tests__/find-ruby.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe('find-ruby', () => {
1313

1414
beforeAll(async () => {
1515
process.env['GITHUB_PATH'] = ''; // Stub out ENV file functionality so we can verify it writes to standard out
16-
console.log("::stop-commands::stoptoken"); // Disable executing of runner commands when running tests in actions
16+
console.log('::stop-commands::stoptoken'); // Disable executing of runner commands when running tests in actions
1717
});
1818

1919
beforeEach(() => {
@@ -33,7 +33,7 @@ describe('find-ruby', () => {
3333
});
3434

3535
afterAll(async () => {
36-
console.log("::stoptoken::"); // Re-enable executing of runner commands when running tests in actions
36+
console.log('::stoptoken::'); // Re-enable executing of runner commands when running tests in actions
3737
}, 100000);
3838

3939
it('finds a version of ruby already in the cache', async () => {

0 commit comments

Comments
 (0)