import {
  Button, Checkbox, LoginOption, Logo, LogoNavbar,
} from '.'

describe('Button component sanity', () => {
  it('is truthy', () => {
    expect(Button).toBeTruthy()
  })
})

describe('Checkbox component sanity', () => {
  it('is truthy', () => {
    expect(Checkbox).toBeTruthy()
  })
})

describe('LoginOption component sanity', () => {
  it('is truthy', () => {
    expect(LoginOption).toBeTruthy()
  })
})

describe('Logo component sanity', () => {
  it('is truthy', () => {
    expect(Logo).toBeTruthy()
  })
})

describe('LogoNavbar component sanity', () => {
  it('is truthy', () => {
    expect(LogoNavbar).toBeTruthy()
  })
})
