Skip to content

Commit

Permalink
Merge pull request #315 from boostcampwm2023/server/deploy/1
Browse files Browse the repository at this point in the history
github actions 트리거용 수정
  • Loading branch information
khw3754 authored Dec 7, 2023
2 parents 2872adf + f710a71 commit c8e2593
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/src/app.controller.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('AppController', () => {

describe('root', () => {
it('should return "Hello World!"', () => {
expect(appController.getHello()).toBe('Hello World!');
expect(appController.getHello()).toBe('Catchy Tape!');
});
});
});
2 changes: 1 addition & 1 deletion server/src/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
return 'Catchy Tape!';
}
}
2 changes: 1 addition & 1 deletion server/test/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ describe('AppController (e2e)', () => {
return request(app.getHttpServer())
.get('/')
.expect(200)
.expect('Hello World!');
.expect('Catchy-Tape!');
});
});

0 comments on commit c8e2593

Please sign in to comment.