Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE] ranking, auth, stock-list 서비스 테스트 코드 작성 #264

Merged
merged 7 commits into from
Dec 5, 2024
2 changes: 1 addition & 1 deletion BE/src/ranking/ranking.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { RedisDomainService } from '../common/redis/redis.domain-service';
import { AssetRepository } from '../asset/asset.repository';
import { SortType } from './enum/sort-type.enum';

describe('Ranking Service 테스트', () => {
describe('랭킹 서비스 테스트', () => {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟢 이거 깃허브 액션에서 터지나요???? 대체 왜 터지지.. 진짜 궁금하네요.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

넹? 아뇨 안터져유.. ㅋㅋㅋ dev 브랜치로 잘못 풀리퀘 날려서 action 수행중인거 지우고 다시 하느라.. ㅎㅎ

let rankingService: RankingService;
let assetRepository: AssetRepository;
let redisDomainService: RedisDomainService;
Expand Down
Loading