summaryrefslogtreecommitdiff
path: root/history/modules/__tests__/TestSequences/ReplaceSamePath.js
blob: 2dd7ce39c4fd0be473bc8f7ab895601dc17b341e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import expect from 'expect';

import execSteps from './execSteps.js';

export default function(history, done) {
  let prevLocation;

  const steps = [
    location => {
      expect(location).toMatchObject({
        pathname: '/'
      });

      history.replace('/home');
    },
    (location, action) => {
      expect(action).toBe('REPLACE');
      expect(location).toMatchObject({
        pathname: '/home'
      });

      prevLocation = location;

      history.replace('/home');
    },
    (location, action) => {
      expect(action).toBe('REPLACE');
      expect(location).toMatchObject({
        pathname: '/home'
      });

      expect(location).not.toBe(prevLocation);
    }
  ];

  execSteps(steps, history, done);
}