From d2b150f576525c01505912115e4c76999aa19000 Mon Sep 17 00:00:00 2001 From: ByungJoon Lee Date: Tue, 6 Feb 2024 02:42:20 +0900 Subject: [PATCH] chore(ci): remove `.only` module specifier --- src/compilers/tools/__tests__/symbol.test.ts | 2 +- src/template/__tests__/template.path.test.ts | 2 +- src/tools/__tests__/path.test.ts | 2 +- src/tools/__tests__/tools.test.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/compilers/tools/__tests__/symbol.test.ts b/src/compilers/tools/__tests__/symbol.test.ts index 008d170..110c9b9 100644 --- a/src/compilers/tools/__tests__/symbol.test.ts +++ b/src/compilers/tools/__tests__/symbol.test.ts @@ -36,7 +36,7 @@ export function handler(req: FastifyRequest<{ Querystring: ITestInfoType01 }>) { expect(r01).toEqual('{ Querystring: ITestInfoType01 }'); }); - it.only('without callback, alias type symbol', () => { + it('without callback, alias type symbol', () => { const uuid = randomUUID(); const filename01 = `${uuid}_0${(context.index += 1)}.ts`; const sourcecode01 = ` diff --git a/src/template/__tests__/template.path.test.ts b/src/template/__tests__/template.path.test.ts index 9f9d171..02288b1 100644 --- a/src/template/__tests__/template.path.test.ts +++ b/src/template/__tests__/template.path.test.ts @@ -17,7 +17,7 @@ describe('getTemplatePath', () => { expect(r01).toEqual(path.join(process.cwd(), CE_DEFAULT_VALUE.TEMPLATES_PATH)); }); - it.only('template path build based on parameter path', async () => { + it('template path build based on parameter path', async () => { const r01 = await getTemplatePath(CE_DEFAULT_VALUE.TEMPLATES_PATH); expect(r01).toEqual(path.join(process.cwd(), CE_DEFAULT_VALUE.TEMPLATES_PATH)); }); diff --git a/src/tools/__tests__/path.test.ts b/src/tools/__tests__/path.test.ts index e08f8ba..e437487 100644 --- a/src/tools/__tests__/path.test.ts +++ b/src/tools/__tests__/path.test.ts @@ -43,7 +43,7 @@ describe('getNextExtName', () => { }); }); -describe.only('getRelativeModulePath', () => { +describe('getRelativeModulePath', () => { it('ext-kind none, module path start dot', () => { const r01 = getRelativeModulePath({ output: '/a/b/c/d/handlers', diff --git a/src/tools/__tests__/tools.test.ts b/src/tools/__tests__/tools.test.ts index f892a9d..fb2b45d 100644 --- a/src/tools/__tests__/tools.test.ts +++ b/src/tools/__tests__/tools.test.ts @@ -10,7 +10,7 @@ describe('getRelativeCwd', () => { }); }); -describe.only('removeQuote', () => { +describe('removeQuote', () => { it('single quote', () => { const r01 = removeQuote(`'hello'`); expect(r01).toEqual('hello');