mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Corrected grammatical error in test descriptions (#30150)
"without instantiate it" should be "without instantiating it"
This commit is contained in:
parent
a880a582b7
commit
7a60dcf9b0
1 changed files with 2 additions and 2 deletions
|
@ -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>',
|
||||
|
|
Loading…
Reference in a new issue