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

Side by Side Diff: third_party/pkg/angular/playback_middleware/spec/playback_spec.js

Issue 124053002: Adding Angular and dependent packages for testing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 var playback = require('../lib/playback.js');
2
3 describe('playback', function() {
4 it('should record a request and playback that request', function() {
5 var play = playback.playback();
6
7 play.record('request key', 'response data');
8
9 var output = play.playback();
10
11 expect(output).toContain('request key');
12 expect(output).toContain('response data');
13 });
14 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698