mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
32 lines
720 B
JSON
32 lines
720 B
JSON
{
|
|
"name": "Normalization",
|
|
"importMapBaseURL": "https://base.example/",
|
|
"tests": {
|
|
"should normalize empty import maps to have imports and scopes keys": {
|
|
"importMap": {},
|
|
"expectedParsedImportMap": {
|
|
"imports": {},
|
|
"scopes": {}
|
|
}
|
|
},
|
|
"should normalize an import map without imports to have imports": {
|
|
"importMap": {
|
|
"scopes": {}
|
|
},
|
|
"expectedParsedImportMap": {
|
|
"imports": {},
|
|
"scopes": {}
|
|
}
|
|
},
|
|
"should normalize an import map without scopes to have scopes": {
|
|
"importMap": {
|
|
"imports": {}
|
|
},
|
|
"expectedParsedImportMap": {
|
|
"imports": {},
|
|
"scopes": {}
|
|
}
|
|
}
|
|
}
|
|
}
|