hexlet-boilerplates/nodejs-package

View on GitHub
__tests__/half.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import { test, expect } from '@jest/globals';
import half from '../index.js';

test('half', () => {
  expect(half(6)).toBe(3);
});