Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(807)

Side by Side Diff: appengine/config_service/ui/bower_components/sinon-chai/test/common.js

Issue 2923973003: Added base template for config ui. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 "use strict";
2
3 global.chai = require("chai");
4 global.should = require("chai").should();
5 global.expect = require("chai").expect;
6 global.AssertionError = require("chai").AssertionError;
7
8 global.swallow = function (thrower) {
9 try {
10 thrower();
11 } catch (e) { }
12 };
13
14 var sinonChai = require("../lib/sinon-chai");
15 chai.use(sinonChai);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698