오류 대응 ERROR: There are no scenarios; must have at least one

작성일 :

오랜만에 개인 서버를 업데이트하고 yarn 명령어를 실행했는데 다음과 같은 오류가 발생했다.

bash
00h00m00s 0/0: : ERROR: There are no scenarios; must have at least one.

이런경우 yarn을 삭제후 다시 설치해주면 된다. 아래 명령어를 차례로 입력해보자.

bash
sudo apt remove cmdtest
sudo apt remove yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update
sudo apt install yarn