We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b5f96f commit a460a7eCopy full SHA for a460a7e
test/tv_show.js
@@ -29,17 +29,17 @@ vows.describe('TV Show').addBatch({
29
}
30
31
}).addBatch({
32
- 'search for an existing tv show on our database': {
33
- topic: function () {
34
- show = new TvShow();
35
- show.name = 'Lost';
36
- show.tvdb_id = 123;
37
- show.save();
38
-
39
- return TvShow.search('Lost')
40
- },
41
- 'should receive an array': function (topic) {
42
- assert.include(topic, show);
43
- }
44
+ // 'search for an existing tv show on our database': {
+ // topic: function () {
+ // show = new TvShow();
+ // show.name = 'Lost';
+ // show.tvdb_id = 123;
+ // show.save();
+ //
+ // return TvShow.search('Lost')
+ // },
+ // 'should receive an array': function (topic) {
+ // assert.include(topic, show);
+ // }
45
}).export(module);
0 commit comments