mirror of
https://github.com/actions/setup-go.git
synced 2025-04-24 01:50:52 +00:00
run lint
This commit is contained in:
parent
b1582817f5
commit
fb489de586
1 changed files with 3 additions and 3 deletions
|
@ -34,10 +34,10 @@ describe('setup-go', () => {
|
|||
let mkdirpSpy: jest.SpyInstance;
|
||||
let execSpy: jest.SpyInstance;
|
||||
let getManifestSpy: jest.SpyInstance;
|
||||
|
||||
|
||||
beforeAll(() => {
|
||||
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(() => {
|
||||
|
@ -96,7 +96,7 @@ describe('setup-go', () => {
|
|||
});
|
||||
|
||||
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('can find 1.9.7 from manifest on osx', async () => {
|
||||
|
|
Loading…
Add table
Reference in a new issue