Skip to content

Commit

Permalink
test(): e2e는 테스트에서 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteKiwi committed Mar 1, 2022
1 parent 562451c commit b81dbba
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 55 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"author": "Whitekiwi <[email protected]>",
"scripts": {
"lint": "eslint \"{{src}/**/*.ts,**.js}\" --fix",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --forceExit",
"test": "jest --forceExit --testPathIgnorePatterns='.e2e.*'",
"test:watch": "jest --watch --testPathIgnorePatterns='.e2e.*'",
"test:cov": "jest --coverage --forceExit --testPathIgnorePatterns='.e2e.*'",
"prebuild": "rimraf ./lib",
"build": "yarn run prebuild && tsc --project tsconfig.build.json",
"script": "ts-node .scripts/index.ts"
Expand Down
25 changes: 0 additions & 25 deletions src/core/string/extractInnerText.ts

This file was deleted.

24 changes: 0 additions & 24 deletions src/core/string/extractInnerTexts.ts

This file was deleted.

2 changes: 0 additions & 2 deletions src/core/string/index.ts

This file was deleted.

3 changes: 2 additions & 1 deletion src/services/the-camp/the-camp.service.e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { theCampService } from './the-camp.service';

describe.skip('TheCampService e2e', () => {
it('성공', async () => {
const session = await theCampService.login({
// const session = await theCampService.login({
await theCampService.login({
id: '',
password: '',
});
Expand Down

0 comments on commit b81dbba

Please sign in to comment.