Bust jest caching and fix tests

This commit is contained in:
Christopher Chedeau
2015-08-11 10:25:39 -07:00
parent 0d636a017d
commit 5ebe0ed717
5 changed files with 34 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
'use strict';
class Cache {
get(filepath, field, cb) {
return cb(filepath);
}
invalidate(filepath) { }
end() { }
}
module.exports = Cache;