(options = {})
| 4 | const EleventyDevServer = require("../"); |
| 5 | |
| 6 | function getOptions(options = {}) { |
| 7 | options.logger = { |
| 8 | info: function() {}, |
| 9 | error: function() {}, |
| 10 | }; |
| 11 | options.portReassignmentRetryCount = 100; |
| 12 | return options; |
| 13 | } |
| 14 | |
| 15 | async function makeRequestTo(t, server, path) { |
| 16 | let port = await server.getPort(); |
no outgoing calls
no test coverage detected
searching dependent graphs…