diff --git a/.idea/atom.iml b/.idea/atom.iml
new file mode 100644
index 000000000..d6ebd4805
--- /dev/null
+++ b/.idea/atom.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 000000000..0be03f464
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 000000000..28a804d89
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 000000000..2a1aa1406
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 000000000..35eb1ddfb
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
new file mode 100644
index 000000000..7b509ceb3
--- /dev/null
+++ b/.idea/workspace.xml
@@ -0,0 +1,378 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ctrl-alt--
+ pane:decrease-size
+ getFl
+ getCon
+ didAddPane
+ getF
+ len
+ describe
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ DEFINITION_ORDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1513798797127
+
+
+ 1513798797127
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spec/pane-container-element-spec.coffee b/spec/pane-container-element-spec.coffee
index 21c1d000a..61d32db4f 100644
--- a/spec/pane-container-element-spec.coffee
+++ b/spec/pane-container-element-spec.coffee
@@ -237,3 +237,30 @@ describe "PaneContainerElement", ->
atom.commands.dispatch(rightPane.getElement(), 'pane:decrease-size')
expect(leftPane.getFlexScale()).toBe 1/1.1
expect(rightPane.getFlexScale()).toBe 1/1.1
+
+ describe "one pane resizing", ->
+ [singlePane] = []
+
+ beforeEach ->
+ container = new PaneContainer(params)
+ singlePane = container.getActivePane()
+
+ describe "when pane:increase-size is triggered", ->
+ it "increases the size of the pane", ->
+ expect(singlePane.getFlexScale()).toBe 1
+
+ atom.commands.dispatch(singlePane.getElement(), 'pane:increase-size')
+ expect(singlePane.getFlexScale()).toBe 1
+
+ atom.commands.dispatch(singlePane.getElement(), 'pane:increase-size')
+ expect(singlePane.getFlexScale()).toBe 1
+
+ describe "when pane:decrease-size is triggered", ->
+ it "decreases the size of the pane", ->
+ expect(singlePane.getFlexScale()).toBe 1
+
+ atom.commands.dispatch(singlePane.getElement(), 'pane:decrease-size')
+ expect(singlePane.getFlexScale()).toBe 1
+
+ atom.commands.dispatch(singlePane.getElement(), 'pane:decrease-size')
+ expect(singlePane.getFlexScale()).toBe 1
\ No newline at end of file