Skip to content

Commit

Permalink
chore: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tnramalho committed Jun 28, 2024
1 parent c42e2b0 commit c3dc207
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,15 @@ describe('CacheAssignmentController (e2e)', () => {
});
});

it.only('POST /cache/user null after create', async () => {
const payload: any = {
it('POST /cache/user null after create', async () => {
interface ExtendedCacheCreatableInterface
extends Pick<
CacheCreatableInterface,
'key' | 'expiresIn' | 'type' | 'data'
> {
assignee: { id: string | null } | null;
}
const payload: ExtendedCacheCreatableInterface = {
key: 'dashboard-1',
type: 'filter',
data: '{}',
Expand Down

0 comments on commit c3dc207

Please sign in to comment.