Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: test_wrapper.js

Issue 29354773: Issue 4465 - Move rsa module from adblockpluschrome (Closed)
Left Patch Set: Created Sept. 23, 2016, 12:27 p.m.
Right Patch Set: Add btoa and navigator stub Created Sept. 25, 2016, 1:17 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « test/signatures.js ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 "use strict"; 1 "use strict";
2
3 GLOBAL.atob = data => new Buffer(data, "base64").toString("binary");
4 GLOBAL.btoa = data => new Buffer(data, "binary").toString("base64");
5 GLOBAL.navigator = {};
2 6
3 require("node-babel")(); 7 require("node-babel")();
4 8
5 require("./node_modules/.bin/nodeunit"); 9 require("./node_modules/.bin/nodeunit");
LEFTRIGHT

Powered by Google App Engine
This is Rietveld