From 3acc98492444d7eb2b67f27889f51c3f3dddf886 Mon Sep 17 00:00:00 2001 From: Theo Truong Date: Mon, 20 Nov 2023 14:52:45 -0700 Subject: [PATCH] Added Http Namespace Signed-off-by: Theo Truong --- test/integration/helpers-secure/http.test.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/integration/helpers-secure/http.test.js b/test/integration/helpers-secure/http.test.js index 5d856b218..c1d23650b 100644 --- a/test/integration/helpers-secure/http.test.js +++ b/test/integration/helpers-secure/http.test.js @@ -38,16 +38,6 @@ test('Check that the previously created index exists', async (t) => { t.equal(response.statusCode, 200); }); -test('Add documents using bulk endpoint', async (t) => { - const body = [ - { index: { _index: index } }, - { title: 'The quick brown fox' }, - { index: { _index: index } }, - { title: 'The quick brown fox jumps over the lazy dog' }, - ]; - const response = await http.post({ path: `_bulk`, body }); - t.equal(response.body.errors, false); -}); test('Close the previously created index', async (t) => { const response = await http.post({ path: `${index}/_close` });