Skip to content
Snippets Groups Projects
Commit 14345b21 authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Fix whitespace

parent b1ec3cb8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -11,8 +11,6 @@
* for more information.
*/
 
const Store = gl.environmentsList.EnvironmentsStore;
window.gl = window.gl || {};
window.gl.environmentsList = window.gl.environmentsList || {};
 
Loading
Loading
Loading
Loading
@@ -21,20 +21,16 @@
});
 
it('should count stopped environments and save the count in the state', () => {
expect(gl.environmentsList.EnvironmentsStore.state.stoppedCounter).toBe(1);
});
 
it('should count available environments and save the count in the state', () => {
expect(gl.environmentsList.EnvironmentsStore.state.availableCounter).toBe(2);
});
 
it('should store environments with same environment_type as sibilings', () => {
expect(gl.environmentsList.EnvironmentsStore.state.environments.length).toBe(2);
const parentFolder = gl.environmentsList.EnvironmentsStore.state.environments.filter((env) => {
return env.children && env.children.length > 0;
});
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment