(loaderContext, localIdentName, localName, options)
| 341 | localIdentContext: "context", |
| 342 | localIdentHashSalt: "hash", |
| 343 | getLocalIdent(loaderContext, localIdentName, localName, options) { |
| 344 | expect(loaderContext).toBeDefined(); |
| 345 | expect(typeof localIdentName).toBe("string"); |
| 346 | expect(typeof localName).toBe("string"); |
| 347 | expect(options).toBeDefined(); |
| 348 | |
| 349 | expect(options.regExp).toBe("regExp"); |
| 350 | expect(options.context).toBe("context"); |
| 351 | expect(options.hashSalt).toBe("hash"); |
| 352 | expect(options.node).toBeDefined(); |
| 353 | |
| 354 | return "foo"; |
| 355 | }, |
| 356 | }, |
| 357 | }); |
| 358 | const stats = await compile(compiler); |
no outgoing calls
no test coverage detected
searching dependent graphs…