@jeremyckahn/farmhand
Version:
A farming game
33 lines (27 loc) • 816 B
JavaScript
import { testCrop, testState } from '../../test-utils/index.js'
import { getPlotContentFromItemId } from '../../utils/index.js'
import { waterPlot } from './waterPlot.js'
vitest.mock('../../data/maps.js')
describe('waterPlot', () => {
describe('non-crop plotContent', () => {
test('no-ops', () => {
const inputState = testState({
field: [[getPlotContentFromItemId('sprinkler')]],
})
const state = waterPlot(inputState, 0, 0)
expect(state).toEqual(inputState)
})
})
describe('crops', () => {
test('sets wasWateredToday to true', () => {
const { field } = waterPlot(
testState({
field: [[testCrop({ itemId: 'sample-crop-1' })]],
}),
0,
0
)
expect(field[0][0]?.wasWateredToday).toBe(true)
})
})
})