summaryrefslogtreecommitdiff
path: root/src/use-sunlight.test.js
blob: a4f4719623f861331c2bf279b56190a1b2979b51 (plain)
1
2
3
4
5
6
7
8
9
10
import { computeLightLevel } from './use-sunlight'

// Test the calculations used in the hook.
// Not sure if it's worth testing the public hook
// API
test('computeLightLevel', () => {
  expect(
    computeLightLevel({ latitude: 0, longitude: 0, loading: false })
  ).toMatchSnapshot()
})