merge: 최신 main을 가오픈 장수 삭제 시각 수정에 통합한다
This commit is contained in:
@@ -264,7 +264,7 @@ describe('vote router actor and permission boundaries', () => {
|
||||
expect(fixture.redisPublish).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('publishes a global front-status projection after creating a survey', async () => {
|
||||
it('stores the authenticated general name and publishes a global projection after creating a survey', async () => {
|
||||
const auth = buildAuth(['admin.survey.open']);
|
||||
auth.user.username = 'admin-account';
|
||||
auth.user.displayName = '관리자 표시명';
|
||||
@@ -285,8 +285,9 @@ describe('vote router actor and permission boundaries', () => {
|
||||
const insert = fixture.queryRaw.mock.calls
|
||||
.map(([query]) => query)
|
||||
.find((query) => sqlText(query).includes('INSERT INTO vote_poll'));
|
||||
expect(insert?.values).toContain('admin-account');
|
||||
expect(insert?.values).not.toContain('관리자 장수');
|
||||
expect(insert?.values).toContain('관리자 장수');
|
||||
expect(insert?.values).not.toContain('admin-account');
|
||||
expect(insert?.values).not.toContain('관리자 표시명');
|
||||
});
|
||||
|
||||
it('reports the current world develcost as the legacy five-times survey reward', async () => {
|
||||
|
||||
Reference in New Issue
Block a user