summaryrefslogtreecommitdiff
path: root/history/modules/__tests__/TestSequences/PushMissingPathname.js
diff options
context:
space:
mode:
Diffstat (limited to 'history/modules/__tests__/TestSequences/PushMissingPathname.js')
-rw-r--r--history/modules/__tests__/TestSequences/PushMissingPathname.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/history/modules/__tests__/TestSequences/PushMissingPathname.js b/history/modules/__tests__/TestSequences/PushMissingPathname.js
new file mode 100644
index 0000000..28e7da7
--- /dev/null
+++ b/history/modules/__tests__/TestSequences/PushMissingPathname.js
@@ -0,0 +1,35 @@
+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'
+ });
+
+ history.push('?another=query#another-hash');
+ },
+ (location, action) => {
+ expect(action).toBe('PUSH');
+ expect(location).toMatchObject({
+ pathname: '/home',
+ search: '?another=query',
+ hash: '#another-hash'
+ });
+ }
+ ];
+
+ execSteps(steps, history, done);
+}