move tsx kit -> uikit
This commit is contained in:
@@ -9,7 +9,7 @@ import (
|
||||
|
||||
// TestCrossTreeJSBundle proves the bundler resolves the shared kit across the
|
||||
// app/kjol tree boundary: a temp app entry imports @ui/Buttons, which pulls the
|
||||
// real kjol web/kit (Buttons -> ./Icons -> @appgen/faIcons stub) and the solid
|
||||
// real kjol web/uikit (Buttons -> ./Icons -> @appgen/faIcons stub) and the solid
|
||||
// runtime from web/runtime. If the alias plugin, merged vendor manifest, and
|
||||
// multi-dir NodePaths all work, esbuild produces a non-empty bundle.
|
||||
func TestCrossTreeJSBundle(t *testing.T) {
|
||||
@@ -17,7 +17,7 @@ func TestCrossTreeJSBundle(t *testing.T) {
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if _, err := os.Stat(filepath.Join(webAbs, "kit", "Buttons.tsx")); err != nil {
|
||||
if _, err := os.Stat(filepath.Join(webAbs, "uikit", "Buttons.tsx")); err != nil {
|
||||
t.Skipf("kjol web kit not present (%v)", err)
|
||||
}
|
||||
|
||||
@@ -62,7 +62,7 @@ func TestCrossTreeCSS(t *testing.T) {
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if _, err := os.Stat(filepath.Join(webAbs, "kit")); err != nil {
|
||||
if _, err := os.Stat(filepath.Join(webAbs, "uikit")); err != nil {
|
||||
t.Skipf("kjol web kit not present (%v)", err)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user