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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/behaviors/bind_in_out_spec.js')
-rw-r--r--spec/frontend/behaviors/bind_in_out_spec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/frontend/behaviors/bind_in_out_spec.js b/spec/frontend/behaviors/bind_in_out_spec.js
index 49425a9377e..4d958e30b4d 100644
--- a/spec/frontend/behaviors/bind_in_out_spec.js
+++ b/spec/frontend/behaviors/bind_in_out_spec.js
@@ -33,7 +33,7 @@ describe('BindInOut', () => {
testContext.bindInOut = new BindInOut({ tagName: 'INPUT' });
});
- it('should set .eventType to keyup ', () => {
+ it('should set .eventType to keyup', () => {
expect(testContext.bindInOut.eventType).toEqual('keyup');
});
});
@@ -43,7 +43,7 @@ describe('BindInOut', () => {
testContext.bindInOut = new BindInOut({ tagName: 'TEXTAREA' });
});
- it('should set .eventType to keyup ', () => {
+ it('should set .eventType to keyup', () => {
expect(testContext.bindInOut.eventType).toEqual('keyup');
});
});
@@ -53,7 +53,7 @@ describe('BindInOut', () => {
testContext.bindInOut = new BindInOut({ tagName: 'SELECT' });
});
- it('should set .eventType to change ', () => {
+ it('should set .eventType to change', () => {
expect(testContext.bindInOut.eventType).toEqual('change');
});
});