Dmytr1K/mini-game-set

View on GitHub
src/utilities/__tests__/get-welcome-phrase.test.js

Summary

Maintainability
A
0 mins
Test Coverage
// @ts-check

import { describe, expect, test } from '@jest/globals';
import getWelcomePhrase from '../get-welcome-phrase.js';

describe('getWelcomePhrase module', () => {
  test("the return value to equal 'Welcome to the Mini-games!'", () => {
    expect(getWelcomePhrase()).toBe('Welcome to the Mini-games!');
  });
});