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

Side by Side Diff: test_wrapper.js

Issue 29354773: Issue 4465 - Move rsa module from adblockpluschrome (Closed)
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:
View unified diff | Download patch
« no previous file with comments | « test/signatures.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 "use strict"; 1 "use strict";
2 2
3 GLOBAL.atob = data => new Buffer(data, "base64").toString("binary");
4 GLOBAL.btoa = data => new Buffer(data, "binary").toString("base64");
5 GLOBAL.navigator = {};
6
3 require("node-babel")(); 7 require("node-babel")();
4 8
5 require("./node_modules/.bin/nodeunit"); 9 require("./node_modules/.bin/nodeunit");
OLDNEW
« no previous file with comments | « test/signatures.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld