From f92687c91054d6924cd66337f6dcabfc2c80f73b Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Fri, 20 Aug 2021 16:47:49 +0300 Subject: [PATCH] Minor fix --- __tests__/setup-dotnet.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/setup-dotnet.test.ts b/__tests__/setup-dotnet.test.ts index a1eaca6..8cd1a82 100644 --- a/__tests__/setup-dotnet.test.ts +++ b/__tests__/setup-dotnet.test.ts @@ -10,7 +10,7 @@ import * as setup from '../src/setup-dotnet'; const IS_WINDOWS = process.platform === 'win32'; -describe.only('setup-dotnet tests', () => { +describe('setup-dotnet tests', () => { beforeAll(async () => { process.env.RUNNER_TOOL_CACHE = toolDir; process.env.DOTNET_INSTALL_DIR = toolDir; @@ -45,7 +45,7 @@ describe.only('setup-dotnet tests', () => { } }, 400000); - it.only('Acquires version of dotnet from global.json with rollForward option, install the latest patch', async () => { + it('Acquires version of dotnet from global.json with rollForward option, install the latest patch', async () => { const globalJsonPath = path.join(process.cwd(), 'global.json'); const jsonContents = `{${os.EOL}"sdk": {${os.EOL}"version":"3.1.201",${os.EOL}"rollForward":"latestFeature"${os.EOL}}${os.EOL}}`; if (!fs.existsSync(globalJsonPath)) {