From 8a1d983ace7ef45d5425252ce6be8e52dc50f39a Mon Sep 17 00:00:00 2001 From: Bryan MacFarlane Date: Sat, 2 May 2020 11:08:26 -0400 Subject: [PATCH] format --- __tests__/authutil.test.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/__tests__/authutil.test.ts b/__tests__/authutil.test.ts index 13f262cc..85dcb313 100644 --- a/__tests__/authutil.test.ts +++ b/__tests__/authutil.test.ts @@ -81,8 +81,8 @@ describe('authutil tests', () => { expect(fs.statSync(rcFile)).toBeDefined(); let contents = fs.readFileSync(rcFile, {encoding: 'utf8'}); let rc = readRcFile(rcFile); - expect(rc["registry"]).toBe("https://registry.npmjs.org/"); - expect(rc["always-auth"]).toBe("false"); + expect(rc['registry']).toBe('https://registry.npmjs.org/'); + expect(rc['always-auth']).toBe('false'); }); it('Appends trailing slash to registry', async () => { @@ -90,8 +90,8 @@ describe('authutil tests', () => { expect(fs.statSync(rcFile)).toBeDefined(); let rc = readRcFile(rcFile); - expect(rc["registry"]).toBe("https://registry.npmjs.org/"); - expect(rc["always-auth"]).toBe("false"); + expect(rc['registry']).toBe('https://registry.npmjs.org/'); + expect(rc['always-auth']).toBe('false'); }); it('Configures scoped npm registries', async () => { @@ -100,8 +100,8 @@ describe('authutil tests', () => { expect(fs.statSync(rcFile)).toBeDefined(); let rc = readRcFile(rcFile); - expect(rc["@myscope:registry"]).toBe("https://registry.npmjs.org/"); - expect(rc["always-auth"]).toBe("false"); + expect(rc['@myscope:registry']).toBe('https://registry.npmjs.org/'); + expect(rc['always-auth']).toBe('false'); }); it('Automatically configures GPR scope', async () => { @@ -109,15 +109,15 @@ describe('authutil tests', () => { expect(fs.statSync(rcFile)).toBeDefined(); let rc = readRcFile(rcFile); - expect(rc["@ownername:registry"]).toBe("npm.pkg.github.com/"); - expect(rc["always-auth"]).toBe("false"); + expect(rc['@ownername:registry']).toBe('npm.pkg.github.com/'); + expect(rc['always-auth']).toBe('false'); }); it('Sets up npmrc for always-auth true', async () => { await auth.configAuthentication('https://registry.npmjs.org/', 'true'); expect(fs.statSync(rcFile)).toBeDefined(); let rc = readRcFile(rcFile); - expect(rc["registry"]).toBe("https://registry.npmjs.org/"); - expect(rc["always-auth"]).toBe("true"); + expect(rc['registry']).toBe('https://registry.npmjs.org/'); + expect(rc['always-auth']).toBe('true'); }); });