Skip to content

Commit

Permalink
test: ci testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sazanik committed Nov 15, 2024
1 parent f8b2786 commit 403d703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/games/evenGame.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { random } from 'lodash-es';
// import { random } from 'lodash-es';

import { BOOLEAN_TO_ANSWER_MAP } from '../constants/index.js';
import { askQuestion, getAnswer, getResponseAfterRound } from '../cli.js';
import { isEven } from '../utils/index.js';

export default () => {
const num = random(1, 1000);
const num = Math.round(Math.random() * 1000);

askQuestion(num);

Expand Down

0 comments on commit 403d703

Please sign in to comment.