Skip to content

Commit

Permalink
Update test refs
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 14, 2023
1 parent 8362883 commit e8b10d8
Show file tree
Hide file tree
Showing 46 changed files with 346 additions and 346 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ const load = {
chunkName () {
return "moment";
},
isReady (props1) {
const key1 = this.resolve(props1);
if (this.resolved[key1] !== true) {
isReady (props) {
const key = this.resolve(props);
if (this.resolved[key] !== true) {
return false;
}
if (typeof __webpack_modules__ !== 'undefined') {
return !!__webpack_modules__[key1];
return !!__webpack_modules__[key];
}
return false;
},
importAsync: /* IMPORTANT! */ ()=>import(/*webpackChunkName: "moment"*/ 'moment'),
requireAsync (props1) {
const key1 = this.resolve(props1);
this.resolved[key1] = false;
return this.importAsync(props1).then((resolved1)=>{
this.resolved[key1] = true;
return resolved1;
requireAsync (props) {
const key = this.resolve(props);
this.resolved[key] = false;
return this.importAsync(props).then((resolved)=>{
this.resolved[key] = true;
return resolved;
});
},
requireSync (props) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ const load = {
chunkName () {
return "moment";
},
isReady (props1) {
const key1 = this.resolve(props1);
if (this.resolved[key1] !== true) {
isReady (props) {
const key = this.resolve(props);
if (this.resolved[key] !== true) {
return false;
}
if (typeof __webpack_modules__ !== 'undefined') {
return !!__webpack_modules__[key1];
return !!__webpack_modules__[key];
}
return false;
},
importAsync: ()=>import(/*webpackChunkName: "moment"*/ 'moment'),
requireAsync (props1) {
const key1 = this.resolve(props1);
this.resolved[key1] = false;
return this.importAsync(props1).then((resolved1)=>{
this.resolved[key1] = true;
return resolved1;
requireAsync (props) {
const key = this.resolve(props);
this.resolved[key] = false;
return this.importAsync(props).then((resolved)=>{
this.resolved[key] = true;
return resolved;
});
},
requireSync (props) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ const load = {
chunkName () {
return "moment";
},
isReady (props1) {
const key1 = this.resolve(props1);
if (this.resolved[key1] !== true) {
isReady (props) {
const key = this.resolve(props);
if (this.resolved[key] !== true) {
return false;
}
if (typeof __webpack_modules__ !== 'undefined') {
return !!__webpack_modules__[key1];
return !!__webpack_modules__[key];
}
return false;
},
importAsync: function() {
return import(/*webpackChunkName: "moment"*/ 'moment');
},
requireAsync (props1) {
const key1 = this.resolve(props1);
this.resolved[key1] = false;
return this.importAsync(props1).then((resolved1)=>{
this.resolved[key1] = true;
return resolved1;
requireAsync (props) {
const key = this.resolve(props);
this.resolved[key] = false;
return this.importAsync(props).then((resolved)=>{
this.resolved[key] = true;
return resolved;
});
},
requireSync (props) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@ const obj = {
chunkName () {
return "moment";
},
isReady (props1) {
const key1 = this.resolve(props1);
if (this.resolved[key1] !== true) {
isReady (props) {
const key = this.resolve(props);
if (this.resolved[key] !== true) {
return false;
}
if (typeof __webpack_modules__ !== 'undefined') {
return !!__webpack_modules__[key1];
return !!__webpack_modules__[key];
}
return false;
},
importAsync: function() {
return import(/*webpackChunkName: "moment"*/ 'moment');
},
requireAsync (props1) {
const key1 = this.resolve(props1);
this.resolved[key1] = false;
return this.importAsync(props1).then((resolved1)=>{
this.resolved[key1] = true;
return resolved1;
requireAsync (props) {
const key = this.resolve(props);
this.resolved[key] = false;
return this.importAsync(props).then((resolved)=>{
this.resolved[key] = true;
return resolved;
});
},
requireSync (props) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
loadable({
resolved: {},
chunkName ({ foo: foo1 }) {
return `${foo1}`.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
chunkName ({ foo }) {
return `${foo}`.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
},
isReady (props1) {
const key1 = this.resolve(props1);
if (this.resolved[key1] !== true) {
isReady (props) {
const key = this.resolve(props);
if (this.resolved[key] !== true) {
return false;
}
if (typeof __webpack_modules__ !== 'undefined') {
return !!__webpack_modules__[key1];
return !!__webpack_modules__[key];
}
return false;
},
importAsync: ({ foo: foo1 })=>import(/*webpackChunkName: "[request]"*/ `./${foo1}`),
requireAsync (props1) {
const key1 = this.resolve(props1);
this.resolved[key1] = false;
return this.importAsync(props1).then((resolved1)=>{
this.resolved[key1] = true;
return resolved1;
importAsync: ({ foo })=>import(/*webpackChunkName: "[request]"*/ `./${foo}`),
requireAsync (props) {
const key = this.resolve(props);
this.resolved[key] = false;
return this.importAsync(props).then((resolved)=>{
this.resolved[key] = true;
return resolved;
});
},
requireSync (props) {
Expand All @@ -29,7 +29,7 @@ loadable({
}
return eval('module.require')(id);
},
resolve ({ foo }) {
resolve ({ foo }) {
if (require.resolveWeak) {
return require.resolveWeak(`./${foo}`);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
loadable({
resolved: {},
chunkName (props1) {
return "pages/" + props1.path.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
chunkName (props) {
return "pages/" + props.path.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
},
isReady (props1) {
const key1 = this.resolve(props1);
if (this.resolved[key1] !== true) {
isReady (props) {
const key = this.resolve(props);
if (this.resolved[key] !== true) {
return false;
}
if (typeof __webpack_modules__ !== 'undefined') {
return !!__webpack_modules__[key1];
return !!__webpack_modules__[key];
}
return false;
},
importAsync: (props1)=>import(/*webpackChunkName: "pages/[request]"*/ `./pages/${props1.path}`),
requireAsync (props1) {
const key1 = this.resolve(props1);
this.resolved[key1] = false;
return this.importAsync(props1).then((resolved1)=>{
this.resolved[key1] = true;
return resolved1;
importAsync: (props)=>import(/*webpackChunkName: "pages/[request]"*/ `./pages/${props.path}`),
requireAsync (props) {
const key = this.resolve(props);
this.resolved[key] = false;
return this.importAsync(props).then((resolved)=>{
this.resolved[key] = true;
return resolved;
});
},
requireSync (props) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
loadable({
resolved: {},
chunkName (props1) {
return `${props1.foo}`.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
chunkName (props) {
return `${props.foo}`.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
},
isReady (props1) {
const key1 = this.resolve(props1);
if (this.resolved[key1] !== true) {
isReady (props) {
const key = this.resolve(props);
if (this.resolved[key] !== true) {
return false;
}
if (typeof __webpack_modules__ !== 'undefined') {
return !!__webpack_modules__[key1];
return !!__webpack_modules__[key];
}
return false;
},
importAsync: (props1)=>import(/*webpackChunkName: "[request]"*/ `./${props1.foo}`),
requireAsync (props1) {
const key1 = this.resolve(props1);
this.resolved[key1] = false;
return this.importAsync(props1).then((resolved1)=>{
this.resolved[key1] = true;
return resolved1;
importAsync: (props)=>import(/*webpackChunkName: "[request]"*/ `./${props.foo}`),
requireAsync (props) {
const key = this.resolve(props);
this.resolved[key] = false;
return this.importAsync(props).then((resolved)=>{
this.resolved[key] = true;
return resolved;
});
},
requireSync (props) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
loadable({
resolved: {},
chunkName (props1) {
return `dir-${props1.foo}-test`.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
chunkName (props) {
return `dir-${props.foo}-test`.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
},
isReady (props1) {
const key1 = this.resolve(props1);
if (this.resolved[key1] !== true) {
isReady (props) {
const key = this.resolve(props);
if (this.resolved[key] !== true) {
return false;
}
if (typeof __webpack_modules__ !== 'undefined') {
return !!__webpack_modules__[key1];
return !!__webpack_modules__[key];
}
return false;
},
importAsync: (props1)=>import(/*webpackChunkName: "dir-[request]"*/ `./dir/${props1.foo}/test`),
requireAsync (props1) {
const key1 = this.resolve(props1);
this.resolved[key1] = false;
return this.importAsync(props1).then((resolved1)=>{
this.resolved[key1] = true;
return resolved1;
importAsync: (props)=>import(/*webpackChunkName: "dir-[request]"*/ `./dir/${props.foo}/test`),
requireAsync (props) {
const key = this.resolve(props);
this.resolved[key] = false;
return this.importAsync(props).then((resolved)=>{
this.resolved[key] = true;
return resolved;
});
},
requireSync (props) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
loadable({
resolved: {},
chunkName ({ foo: foo1 }) {
return `dir-${foo1}-test`.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
chunkName ({ foo }) {
return `dir-${foo}-test`.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
},
isReady (props1) {
const key1 = this.resolve(props1);
if (this.resolved[key1] !== true) {
isReady (props) {
const key = this.resolve(props);
if (this.resolved[key] !== true) {
return false;
}
if (typeof __webpack_modules__ !== 'undefined') {
return !!__webpack_modules__[key1];
return !!__webpack_modules__[key];
}
return false;
},
importAsync: ({ foo: foo1 })=>import(/*webpackChunkName: "dir-[request]"*/ `./dir/${foo1}/test`),
requireAsync (props1) {
const key1 = this.resolve(props1);
this.resolved[key1] = false;
return this.importAsync(props1).then((resolved1)=>{
this.resolved[key1] = true;
return resolved1;
importAsync: ({ foo })=>import(/*webpackChunkName: "dir-[request]"*/ `./dir/${foo}/test`),
requireAsync (props) {
const key = this.resolve(props);
this.resolved[key] = false;
return this.importAsync(props).then((resolved)=>{
this.resolved[key] = true;
return resolved;
});
},
requireSync (props) {
Expand All @@ -29,7 +29,7 @@ loadable({
}
return eval('module.require')(id);
},
resolve ({ foo }) {
resolve ({ foo }) {
if (require.resolveWeak) {
return require.resolveWeak(`./dir/${foo}/test`);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
loadable({
resolved: {},
chunkName (props1) {
return `${props1.foo}`.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
chunkName (props) {
return `${props.foo}`.replace(/[^a-zA-Z0-9_!§$()=\\-^°]+/g, "-");
},
isReady (props1) {
const key1 = this.resolve(props1);
if (this.resolved[key1] !== true) {
isReady (props) {
const key = this.resolve(props);
if (this.resolved[key] !== true) {
return false;
}
if (typeof __webpack_modules__ !== 'undefined') {
return !!__webpack_modules__[key1];
return !!__webpack_modules__[key];
}
return false;
},
importAsync: (props1)=>import(/*webpackChunkName: "[request]"*/ `./${props1.foo}`),
requireAsync (props1) {
const key1 = this.resolve(props1);
this.resolved[key1] = false;
return this.importAsync(props1).then((resolved1)=>{
this.resolved[key1] = true;
return resolved1;
importAsync: (props)=>import(/*webpackChunkName: "[request]"*/ `./${props.foo}`),
requireAsync (props) {
const key = this.resolve(props);
this.resolved[key] = false;
return this.importAsync(props).then((resolved)=>{
this.resolved[key] = true;
return resolved;
});
},
requireSync (props) {
Expand Down
Loading

0 comments on commit e8b10d8

Please sign in to comment.