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
path: root/js
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-10-31 10:25:33 +0300
committerGitHub <noreply@github.com>2020-10-31 10:25:33 +0300
commitb63066d630fd15acc98191825b9b513a911e4139 (patch)
treeae716717c5d27cc711f585012883d529f89f19cf /js
parent9cedf5b81ea5ace67556668b408fa43d6856a662 (diff)
toast.spec.js: fix typo (#32026)
Diffstat (limited to 'js')
-rw-r--r--js/tests/unit/toast.spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tests/unit/toast.spec.js b/js/tests/unit/toast.spec.js
index 031c841afa..1641ded666 100644
--- a/js/tests/unit/toast.spec.js
+++ b/js/tests/unit/toast.spec.js
@@ -381,7 +381,7 @@ describe('Toast', () => {
})
describe('getInstance', () => {
- it('should return collapse instance', () => {
+ it('should return a toast instance', () => {
fixtureEl.innerHTML = '<div></div>'
const div = fixtureEl.querySelector('div')
@@ -390,7 +390,7 @@ describe('Toast', () => {
expect(Toast.getInstance(div)).toEqual(toast)
})
- it('should return null when there is no collapse instance', () => {
+ it('should return null when there is no toast instance', () => {
fixtureEl.innerHTML = '<div></div>'
const div = fixtureEl.querySelector('div')