Actually fixed tests

This commit is contained in:
Kevin Ansfield 2021-01-18 21:16:00 +00:00
parent cbf19162d7
commit c0e1242f10
2 changed files with 2 additions and 2 deletions

View File

@ -13,6 +13,6 @@ describe('Integration: Component: gh-launch-wizard/connect-stripe', function ()
await render(hbs`<GhLaunchWizard::ConnectStripe />`);
expect(this.element.textContent.trim()).to.equal('Connect Stripe');
expect(this.element.textContent.trim()).to.have.string('Connect Stripe');
});
});

View File

@ -13,6 +13,6 @@ describe('Integration: Component: gh-launch-wizard/set-pricing', function () {
await render(hbs`<GhLaunchWizard::SetPricing />`);
expect(this.element.textContent.trim()).to.equal('Set pricing');
expect(this.element.textContent.trim()).to.have.string('Set pricing');
});
});