Resolves the absolute path to a file synchronously @private @method resolveSync @param {String} file File to resolve @return {String} Absolute path to file
(file)
| 330 | @return {String} Absolute path to file |
| 331 | */ |
| 332 | resolveSync(file) { |
| 333 | return resolve.sync(file, { |
| 334 | basedir: process.env.EMBER_NODE_PATH || this.root, |
| 335 | }); |
| 336 | } |
| 337 | |
| 338 | /** |
| 339 | Calls `require` on a given module from the context of the project. For |
no outgoing calls
no test coverage detected