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

Commit

Permalink
run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
thboop committed Sep 29, 2020
1 parent dd324cc commit 2cf4531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/find-ruby.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('find-ruby', () => {

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

beforeEach(() => {
Expand All @@ -33,7 +33,7 @@ describe('find-ruby', () => {
});

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

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

0 comments on commit 2cf4531

Please sign in to comment.