aboutsummaryrefslogtreecommitdiff
path: root/test/modules
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2024-06-23 17:25:32 +0200
committerGitHub <[email protected]>2024-06-23 15:25:32 +0000
commit6b1159d7e897376ac02837356de9b72cf73cc75a (patch)
tree894cd8a11d6bba9c020c3c7870b08c5b91fc782b /test/modules
parent4514fceed153d74cddf058344a58b7f8332a51f6 (diff)
downloadfaker-6b1159d7e897376ac02837356de9b72cf73cc75a.tar.xz
faker-6b1159d7e897376ac02837356de9b72cf73cc75a.zip
test: remove usage of vitest.todo (#2960)
Diffstat (limited to 'test/modules')
-rw-r--r--test/modules/helpers.spec.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/modules/helpers.spec.ts b/test/modules/helpers.spec.ts
index 3582799f..c41b004b 100644
--- a/test/modules/helpers.spec.ts
+++ b/test/modules/helpers.spec.ts
@@ -1029,16 +1029,6 @@ describe('helpers', () => {
);
});
- // TODO @ST-DDT 2023-01-17: Restore this test when the definitions proxy is restored: #893
- it.todo('should support deprecated definition aliases', () => {
- expect(faker.definitions.location.city_name).toContain(
- faker.helpers.fake('{{address.city_name}}')
- );
- expect(faker.definitions.person.first_name).toContain(
- faker.helpers.fake('{{name.first_name}}')
- );
- });
-
it('should not trim whitespace', () => {
expect(faker.helpers.fake(' --- ')).toBe(' --- ');
});