summaryrefslogtreecommitdiff
path: root/spec/frontend/ci_variable_list/store
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/ci_variable_list/store')
-rw-r--r--spec/frontend/ci_variable_list/store/getters_spec.js2
-rw-r--r--spec/frontend/ci_variable_list/store/mutations_spec.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/frontend/ci_variable_list/store/getters_spec.js b/spec/frontend/ci_variable_list/store/getters_spec.js
index 7ad96545652..92f22b18763 100644
--- a/spec/frontend/ci_variable_list/store/getters_spec.js
+++ b/spec/frontend/ci_variable_list/store/getters_spec.js
@@ -3,7 +3,7 @@ import mockData from '../services/mock_data';
describe('Ci variable getters', () => {
describe('joinedEnvironments', () => {
- it('should join fetched enviroments with variable environment scopes', () => {
+ it('should join fetched environments with variable environment scopes', () => {
const state = {
environments: ['All (default)', 'staging', 'deployment', 'prod'],
variables: mockData.mockVariableScopes,
diff --git a/spec/frontend/ci_variable_list/store/mutations_spec.js b/spec/frontend/ci_variable_list/store/mutations_spec.js
index 663b3486a17..a333fb7d8f9 100644
--- a/spec/frontend/ci_variable_list/store/mutations_spec.js
+++ b/spec/frontend/ci_variable_list/store/mutations_spec.js
@@ -73,7 +73,7 @@ describe('CI variable list mutations', () => {
});
describe('ADD_WILD_CARD_SCOPE', () => {
- it('should add wild card scope to enviroments array and sort', () => {
+ it('should add wild card scope to environments array and sort', () => {
stateCopy.environments = ['dev', 'staging'];
mutations[types.ADD_WILD_CARD_SCOPE](stateCopy, 'production');