vigetlabs/ars-arsenal

View on GitHub
src/utils/__tests__/article-for-test.js

Summary

Maintainability
A
1 hr
Test Coverage
import articleFor from '../article-for'

describe('articleFor', () => {
  test('returns the article preceeding the given noun', () => {
    expect(articleFor('photo')).toBe('a')
    expect(articleFor('image')).toBe('an')
  })
})