From 131fd8fe2cf95531d693092dfd7ea10e333a15d0 Mon Sep 17 00:00:00 2001 From: Nazar Gargol Date: Thu, 18 Jun 2020 18:11:15 +1200 Subject: [PATCH] Fixed failing test refs https://github.com/TryGhost/Ghost-Admin/commit/ed98d8977160f8b2d87e2c9210d34a7750abc8cb --- .../integration/components/gh-members-import-table-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/admin/tests/integration/components/gh-members-import-table-test.js b/ghost/admin/tests/integration/components/gh-members-import-table-test.js index f0b6fcefd4..f483175e3b 100644 --- a/ghost/admin/tests/integration/components/gh-members-import-table-test.js +++ b/ghost/admin/tests/integration/components/gh-members-import-table-test.js @@ -15,7 +15,7 @@ describe('Integration: Component: gh-members-import-table', function () { expect(find('table')).to.exist; expect(findAll('table thead th').length).to.equal(2); expect(findAll('table tbody tr').length).to.equal(1); - expect(find('table tbody tr').textContent).to.equal('No data'); + expect(find('table tbody tr').textContent).to.match(/No data/); }); it('renders members data with all the properties', async function () {