(filename)
| 9 | }); |
| 10 | |
| 11 | var getWebKitFile = function (filename) { |
| 12 | return { |
| 13 | isFile: true, |
| 14 | isDirectory: false, |
| 15 | fullPath: '/home/user/foo/' + filename, |
| 16 | file: function (callback) { |
| 17 | callback({ |
| 18 | relativePath: '/foo/' + filename |
| 19 | }); |
| 20 | } |
| 21 | }; |
| 22 | }; |
| 23 | |
| 24 | it('should return empty array', function() { |
| 25 | var event = { |
no outgoing calls
no test coverage detected
searching dependent graphs…