summaryrefslogtreecommitdiff
path: root/history/modules/__tests__/TestSequences/GoForward.js
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-08-23 16:46:06 -0300
committerSebastian <sebasjm@gmail.com>2021-08-23 16:48:30 -0300
commit38acabfa6089ab8ac469c12b5f55022fb96935e5 (patch)
tree453dbf70000cc5e338b06201af1eaca8343f8f73 /history/modules/__tests__/TestSequences/GoForward.js
parentf26125e039143b92dc0d84e7775f508ab0cdcaa8 (diff)
downloadnode-vendor-master.tar.gz
node-vendor-master.tar.bz2
node-vendor-master.zip
added web vendorsHEADmaster
Diffstat (limited to 'history/modules/__tests__/TestSequences/GoForward.js')
-rw-r--r--history/modules/__tests__/TestSequences/GoForward.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/history/modules/__tests__/TestSequences/GoForward.js b/history/modules/__tests__/TestSequences/GoForward.js
new file mode 100644
index 0000000..06d7f61
--- /dev/null
+++ b/history/modules/__tests__/TestSequences/GoForward.js
@@ -0,0 +1,39 @@
+import expect from 'expect';
+
+import execSteps from './execSteps.js';
+
+export default function(history, done) {
+ const steps = [
+ location => {
+ expect(location).toMatchObject({
+ pathname: '/'
+ });
+
+ history.push('/home');
+ },
+ (location, action) => {
+ expect(action).toEqual('PUSH');
+ expect(location).toMatchObject({
+ pathname: '/home'
+ });
+
+ history.goBack();
+ },
+ (location, action) => {
+ expect(action).toEqual('POP');
+ expect(location).toMatchObject({
+ pathname: '/'
+ });
+
+ history.goForward();
+ },
+ (location, action) => {
+ expect(action).toEqual('POP');
+ expect(location).toMatchObject({
+ pathname: '/home'
+ });
+ }
+ ];
+
+ execSteps(steps, history, done);
+}