it('Should create a post', async () => {
    const posts = await client(createPost, { data: { title: 'string', content: 'string' } });
    expect(posts).toMatchObject({
      id: expect.any(String),
      title: expect.any(String),