Skip to content

Commit

Permalink
chore(ci): remove .only module specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
imjuni committed Feb 5, 2024
1 parent 06a0468 commit d2b150f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/compilers/tools/__tests__/symbol.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = `
Expand Down
2 changes: 1 addition & 1 deletion src/template/__tests__/template.path.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
});
Expand Down
2 changes: 1 addition & 1 deletion src/tools/__tests__/path.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/tools/__tests__/tools.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('getRelativeCwd', () => {
});
});

describe.only('removeQuote', () => {
describe('removeQuote', () => {
it('single quote', () => {
const r01 = removeQuote(`'hello'`);
expect(r01).toEqual('hello');
Expand Down

0 comments on commit d2b150f

Please sign in to comment.