본문 바로가기
  • 소소한 개발자 이야기

분류 전체보기98

[인텔리제이] JUnit Test 실패 No tests found for given includes Intellij 에서 Junit 테스트를 하는 중 갑자기 Error가 발생했다. FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':eatgo-common:test'. > No tests found for given includes: (filter.includeTestsMatching) * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. * Get more help .. 2023. 1. 13.
[인텔리제이] JUnit Test 실패 No tests found for given includes Intellij 에서 Junit 테스트를 하는 중 갑자기 Error가 발생했다. FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':eatgo-common:test'. > No tests found for given includes: (filter.includeTestsMatching) * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. * Get more help .. 2022. 12. 19.
[node.js] 맥북(M2) Node 설치하기 1. 사이트에서 설치하기 먼저, 링크로 접속하여 node.js를 설치합니다. https://nodejs.org/ko/ Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org 2. LTS를 설치한다. 3. 다운로드 된 pkg를 실행시켜 Node.js 설치를 실행합니다. - 계속 > 동의 > 계속 ..... 4. 설치된 node.js 버전을 확인합니다. minsiwan@minsiwan-ui-MacBookPro ~ % node --version v18.12.1 5. npm을 설치를 확인합니다. npm은 Node.js 패키지 매니지로다양한 라이브러리와 프레임워크를 설치하고 관리할수 있습니다. 터미널에서.. 2022. 12. 10.
[node.js] npm run serve 오류 vue-cli-service: command not found 오픈 소스를 Clone 받아 프로젝트 npm을 구동 하려고 했는데 아래와 같은 상황을 만날 경우가 있다. 문제 minsiwan-ui-MacBookPro:slots minsiwan$ npm run serve > slots@0.1.0 serve > vue-cli-service serve sh: vue-cli-service: command not found npm run serve 를 구동 했으나, package.json은 설치되어 있음에도 command not found 라고 나온다. 원인 원격 저장소에 있는 오픈소스 프로젝트를 로컬에 Clone 받을 시 초기 설정이 필요하나 그 작업이 이루어 지지 않았기 때문이다. 해결방법 npm ci npm run serve minsiwan-ui-MacBookPro:sl.. 2022. 12. 7.
[node.js] (node:2958) [DEP0111] DeprecationWarning: Access to process.binding('http_parser') is deprecated. node 버전 다운 그레이드로 해결하자. open 소스를 clone 후 npm run serve 를 했더니 이런 에러 로그가 나왔다. INFO Starting development server... (node:2958) [DEP0111] DeprecationWarning: Access to process.binding('http_parser') is deprecated. (Use `node --trace-deprecation ...` to show where the warning was created) 10% building 1/1 modules 0 activeError: error:0308010C:digital envelope routines::unsupported at new Hash (node:internal/crypto/hash:71:1.. 2022. 12. 6.
[맥북] 맥북 Pro M2 13인치 사용 후기, 뛰어난 성능과 편리한 기능이 만족스러웠다. 개발용으로 사용 후기 스페이스 그레이 Apple M2 칩(8코어 CPU, 10코어 GPU, 16코어 Neural Engine) 16GB 통합 메모리 512GB SSD 저장 장치 13형 Retina True Tone 디스플레이 Thunderbolt/USB 4 포트 2개 Touch Bar 및 Touch ID 백라이트 Magic Keyboard - 한국어 Force Touch 트랙패드 사용기간 약 3개월 가격 약 230 만원 정도 사용하는 Tools IntelliJ(Java), VSCode(Vue), MariaDB, SmartGit etc.. 사용 후기 - 개인적으로 13인치를 사용하는 것에 대해 화면이 작다는 느낌은 들지 않는다. - MacBook 을 사용한 뒤로 마우스를 잘 사용하지 않는다. 그만큼 화면 .. 2022. 11. 30.