Attempting to solve component library issue permanently in test.
This commit is contained in:
parent
1cf0027c6e
commit
e9ceff42d5
|
@ -162,8 +162,9 @@ exports.getComponentLibraryManifest = async (appId, library) => {
|
||||||
// when testing in cypress and so on we need to get the package
|
// when testing in cypress and so on we need to get the package
|
||||||
// as the environment may not be fully fleshed out for dev or prod
|
// as the environment may not be fully fleshed out for dev or prod
|
||||||
if (env.isTest()) {
|
if (env.isTest()) {
|
||||||
const paths = await downloadLibraries(appId)
|
const lib = library.split("/")[1]
|
||||||
return require(join(paths[library], "package", filename))
|
const path = require.resolve(library).split(lib)[0]
|
||||||
|
return require(join(path, lib, filename))
|
||||||
}
|
}
|
||||||
const devPath = join(budibaseTempDir(), library, filename)
|
const devPath = join(budibaseTempDir(), library, filename)
|
||||||
if (env.isDev() && fs.existsSync(devPath)) {
|
if (env.isDev() && fs.existsSync(devPath)) {
|
||||||
|
|
Loading…
Reference in New Issue