summaryrefslogtreecommitdiff
path: root/history/modules/__tests__/TestSequences/PushNewLocation.js
diff options
context:
space:
mode:
Diffstat (limited to 'history/modules/__tests__/TestSequences/PushNewLocation.js')
-rw-r--r--history/modules/__tests__/TestSequences/PushNewLocation.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/history/modules/__tests__/TestSequences/PushNewLocation.js b/history/modules/__tests__/TestSequences/PushNewLocation.js
new file mode 100644
index 0000000..073f630
--- /dev/null
+++ b/history/modules/__tests__/TestSequences/PushNewLocation.js
@@ -0,0 +1,25 @@
+import expect from 'expect';
+
+import execSteps from './execSteps.js';
+
+export default function(history, done) {
+ const steps = [
+ location => {
+ expect(location).toMatchObject({
+ pathname: '/'
+ });
+
+ history.push('/home?the=query#the-hash');
+ },
+ (location, action) => {
+ expect(action).toBe('PUSH');
+ expect(location).toMatchObject({
+ pathname: '/home',
+ search: '?the=query',
+ hash: '#the-hash'
+ });
+ }
+ ];
+
+ execSteps(steps, history, done);
+}