(request, ...options)
| 17 | */ |
| 18 | describe("getWebpackResolver", () => { |
| 19 | const resolve = (request, ...options) => |
| 20 | getWebpackResolver(enhanced.create, ...options)(__filename, request); |
| 21 | |
| 22 | it("should resolve .scss from node_modules", async () => { |
| 23 | assert.match(await resolve("scss/style"), /style\.scss$/); |
no test coverage detected
searching dependent graphs…