2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00

Corrected grammatical error in test descriptions (#30150)

"without instantiate it" should be "without instantiating it"
This commit is contained in:
yonikohen
2020-02-10 02:35:13 -05:00
committed by GitHub
parent a880a582b7
commit 7a60dcf9b0
+2 -2
View File
@@ -20,7 +20,7 @@ describe('Alert', () => {
})
describe('data-api', () => {
it('should close an alert without instantiate it manually', () => {
it('should close an alert without instantiating it manually', () => {
fixtureEl.innerHTML = [
'<div class="alert">',
' <button type="button" data-dismiss="alert">x</button>',
@@ -33,7 +33,7 @@ describe('Alert', () => {
expect(makeArray(document.querySelectorAll('.alert')).length).toEqual(0)
})
it('should close an alert without instantiate it manually with the parent selector', () => {
it('should close an alert without instantiating it manually with the parent selector', () => {
fixtureEl.innerHTML = [
'<div class="alert">',
' <button type="button" data-target=".alert" data-dismiss="alert">x</button>',