From 964810858b208c60abb3453aea721a35b9727132 Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Thu, 6 May 2021 16:13:54 +0200 Subject: [PATCH] fix(fs/fs.spec): remove .only modifiers Introduced by 48af5c7ed --- @xen-orchestra/fs/src/fs.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/@xen-orchestra/fs/src/fs.spec.js b/@xen-orchestra/fs/src/fs.spec.js index 7d12869dc..f0d245ddc 100644 --- a/@xen-orchestra/fs/src/fs.spec.js +++ b/@xen-orchestra/fs/src/fs.spec.js @@ -134,11 +134,11 @@ handlers.forEach(url => { expect(await handler.list('dir', { prependDir: true })).toEqual(['/dir/file']) }) - it.only('throws ENOENT if no such directory', async () => { + it('throws ENOENT if no such directory', async () => { expect((await rejectionOf(handler.list('dir'))).code).toBe('ENOENT') }) - it.only('can returns empty for missing directory', async () => { + it('can returns empty for missing directory', async () => { expect(await handler.list('dir', { ignoreMissing: true })).toEqual([]) }) })