it('should return true', () => {
    const board = Array(9).fill(null);
    expect(xIsNext(board)).toEqual(true);
  });