Fix test for loading component library
This commit is contained in:
parent
7064e80143
commit
3d68b39647
|
@ -178,6 +178,7 @@ 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()) {
|
||||||
|
library = library.replace("standard-components", "client")
|
||||||
const lib = library.split("/")[1]
|
const lib = library.split("/")[1]
|
||||||
const path = require.resolve(library).split(lib)[0]
|
const path = require.resolve(library).split(lib)[0]
|
||||||
return require(join(path, lib, filename))
|
return require(join(path, lib, filename))
|
||||||
|
|
Loading…
Reference in New Issue