import { render } from '@testing-library/react'
import { Guild } from './Guild'
import { guildExample } from '../../../../cypress/fixtures/guilds/guild'
describe('', () => {
it('should render successfully', () => {
const { baseElement } = render(
)
expect(baseElement).toBeTruthy()
})
})