0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Fixed member import test

refs 05f6faf846

- The copy for these errors has changed, same should've been done in the tests.
This commit is contained in:
Nazar Gargol 2020-07-01 17:42:58 +12:00
parent 05f6faf846
commit 0ee92639dd

View file

@ -299,7 +299,7 @@ describe('Members API', function () {
const jsonResponse = res.body;
should.exist(jsonResponse);
should.exist(jsonResponse.errors);
jsonResponse.errors[0].message.should.match(/Member not imported/i);
jsonResponse.errors[0].message.should.match(/Missing Stripe connection/i);
jsonResponse.errors[0].context.should.match(/no Stripe account connected/i);
});
});