Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryonikohen <58581019+yonikohen@users.noreply.github.com>2020-02-10 10:35:13 +0300
committerGitHub <noreply@github.com>2020-02-10 10:35:13 +0300
commit7a60dcf9b0043d81299bda4622a8c39bee8e1c5c (patch)
tree0db0671e3d230853cf647f61ad1fa7013f4a97e2 /js/tests/unit/alert.spec.js
parenta880a582b7aacff211677e51d1dc3b6b689fe8c2 (diff)
Corrected grammatical error in test descriptions (#30150)
"without instantiate it" should be "without instantiating it"
Diffstat (limited to 'js/tests/unit/alert.spec.js')
-rw-r--r--js/tests/unit/alert.spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tests/unit/alert.spec.js b/js/tests/unit/alert.spec.js
index 32f11b6188..8a3d33dcf8 100644
--- a/js/tests/unit/alert.spec.js
+++ b/js/tests/unit/alert.spec.js
@@ -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>',