aboutsummaryrefslogtreecommitdiff
path: root/js/src/alert
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/alert')
-rw-r--r--js/src/alert/alert.spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/alert/alert.spec.js b/js/src/alert/alert.spec.js
index 05e3dbd68..61d656bd0 100644
--- a/js/src/alert/alert.spec.js
+++ b/js/src/alert/alert.spec.js
@@ -20,7 +20,7 @@ describe('Alert', () => {
})
describe('data-api', () => {
- it('should close an alert without instanciate it manually', () => {
+ it('should close an alert without instantiate 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 instanciate it manually with the parent selector', () => {
+ it('should close an alert without instantiate it manually with the parent selector', () => {
fixtureEl.innerHTML = [
'<div class="alert">',
' <button type="button" data-target=".alert" data-dismiss="alert">x</button>',