(opts: NextInstanceOpts)
| 16 | private _prerenderFinishedTimeMS: number | null = null |
| 17 | |
| 18 | constructor(opts: NextInstanceOpts) { |
| 19 | super(opts) |
| 20 | |
| 21 | if (!opts.disableAutoSkewProtection && shouldUseTurbopack()) { |
| 22 | this.env.NEXT_DEPLOYMENT_ID = 'test-dpl-id-1234' |
| 23 | this.env.__NEXT_IMMUTABLE_ASSET_TOKEN = 'test-immutable-tkn-7890' |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | public get buildId() { |
| 28 | return this._buildId |
nothing calls this directly
no test coverage detected