From ce0f491b4342cba965d5d959a2cbeb396fcd162a Mon Sep 17 00:00:00 2001 From: Fabien Schurter Date: Sat, 25 May 2024 23:34:04 +0200 Subject: [PATCH] style: Replace incorrect usage of `describe()` with `it()` in a test --- tests/adapter/icu.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/adapter/icu.test.js b/tests/adapter/icu.test.js index ecc26d9..fe64cf7 100644 --- a/tests/adapter/icu.test.js +++ b/tests/adapter/icu.test.js @@ -5,7 +5,7 @@ import { IntlMessageFormat } from 'intl-messageformat' describe('#src/adapter/icu', () => { describe('translateString()', () => { - describe('translates an ICU-formatted string using a static dictionary', () => { + it('translates an ICU-formatted string using a static dictionary', () => { const dictionary = { greetings: 'Hello, my name is {name}.', occupation: 'I’m a {job}, the best in {town}.',