summaryrefslogtreecommitdiff
path: root/history/modules/__tests__/TestSequences/InitialLocationHasKey.js
blob: e9a22b62a20b289777d74f826fceec14d77f5f20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import expect from 'expect';

import execSteps from './execSteps.js';

export default function(history, done) {
  const steps = [
    location => {
      expect(location.key).toBeTruthy();
    }
  ];

  execSteps(steps, history, done);
}