Spaces:
Sleeping
Sleeping
rag-context-optimizer / frontend /node_modules /next /dist /experimental /testmode /playwright /index.js
| // eslint-disable-next-line import/no-extraneous-dependencies | |
| ; | |
| Object.defineProperty(exports, "__esModule", { | |
| value: true | |
| }); | |
| 0 && (module.exports = { | |
| default: null, | |
| defaultPlaywrightConfig: null, | |
| defineConfig: null, | |
| test: null | |
| }); | |
| function _export(target, all) { | |
| for(var name in all)Object.defineProperty(target, name, { | |
| enumerable: true, | |
| get: all[name] | |
| }); | |
| } | |
| _export(exports, { | |
| default: function() { | |
| return _default; | |
| }, | |
| defaultPlaywrightConfig: function() { | |
| return _defaultconfig.defaultPlaywrightConfig; | |
| }, | |
| defineConfig: function() { | |
| return defineConfig; | |
| }, | |
| test: function() { | |
| return test; | |
| } | |
| }); | |
| 0 && __export(require("@playwright/test")); | |
| const _test = /*#__PURE__*/ _interop_require_wildcard(_export_star(require("@playwright/test"), exports)); | |
| const _nextworkerfixture = require("./next-worker-fixture"); | |
| const _nextfixture = require("./next-fixture"); | |
| const _defaultconfig = require("./default-config"); | |
| function _export_star(from, to) { | |
| Object.keys(from).forEach(function(k) { | |
| if (k !== "default" && !Object.prototype.hasOwnProperty.call(to, k)) { | |
| Object.defineProperty(to, k, { | |
| enumerable: true, | |
| get: function() { | |
| return from[k]; | |
| } | |
| }); | |
| } | |
| }); | |
| return from; | |
| } | |
| function _getRequireWildcardCache(nodeInterop) { | |
| if (typeof WeakMap !== "function") return null; | |
| var cacheBabelInterop = new WeakMap(); | |
| var cacheNodeInterop = new WeakMap(); | |
| return (_getRequireWildcardCache = function(nodeInterop) { | |
| return nodeInterop ? cacheNodeInterop : cacheBabelInterop; | |
| })(nodeInterop); | |
| } | |
| function _interop_require_wildcard(obj, nodeInterop) { | |
| if (!nodeInterop && obj && obj.__esModule) { | |
| return obj; | |
| } | |
| if (obj === null || typeof obj !== "object" && typeof obj !== "function") { | |
| return { | |
| default: obj | |
| }; | |
| } | |
| var cache = _getRequireWildcardCache(nodeInterop); | |
| if (cache && cache.has(obj)) { | |
| return cache.get(obj); | |
| } | |
| var newObj = { | |
| __proto__: null | |
| }; | |
| var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; | |
| for(var key in obj){ | |
| if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { | |
| var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; | |
| if (desc && (desc.get || desc.set)) { | |
| Object.defineProperty(newObj, key, desc); | |
| } else { | |
| newObj[key] = obj[key]; | |
| } | |
| } | |
| } | |
| newObj.default = obj; | |
| if (cache) { | |
| cache.set(obj, newObj); | |
| } | |
| return newObj; | |
| } | |
| function defineConfig(config) { | |
| if (config.webServer !== undefined) { | |
| // Playwright doesn't merge the `webServer` field as we'd expect, so remove our default if the user specifies one. | |
| const { webServer, ...partialDefaultPlaywrightConfig } = _defaultconfig.defaultPlaywrightConfig; | |
| return _test.defineConfig(partialDefaultPlaywrightConfig, config); | |
| } else { | |
| return _test.defineConfig(_defaultconfig.defaultPlaywrightConfig, config); | |
| } | |
| } | |
| const test = _test.test.extend({ | |
| nextOptions: [ | |
| { | |
| fetchLoopback: false | |
| }, | |
| { | |
| option: true | |
| } | |
| ], | |
| _nextWorker: [ | |
| // eslint-disable-next-line no-empty-pattern | |
| async ({}, use)=>{ | |
| await (0, _nextworkerfixture.applyNextWorkerFixture)(use); | |
| }, | |
| { | |
| scope: 'worker', | |
| auto: true | |
| } | |
| ], | |
| next: async ({ nextOptions, _nextWorker, page }, use, testInfo)=>{ | |
| await (0, _nextfixture.applyNextFixture)(use, { | |
| testInfo, | |
| nextWorker: _nextWorker, | |
| page, | |
| nextOptions | |
| }); | |
| } | |
| }); | |
| const _default = test; | |
| //# sourceMappingURL=index.js.map |