-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcode.test.ts.snap
More file actions
82 lines (73 loc) · 1.64 KB
/
code.test.ts.snap
File metadata and controls
82 lines (73 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Bun Snapshot v1, https://bun.sh/docs/test/snapshots
exports[`registerCodegen should register codegen 1`] = `
[
{
"code": "<Test />",
"language": "TYPESCRIPT",
"title": "Usage",
},
{
"code": "<Box boxSize="100%" />",
"language": "TYPESCRIPT",
"title": "Test",
},
]
`;
exports[`registerCodegen should register codegen 2`] = `
[
{
"code": "<Box boxSize="100%" />",
"language": "TYPESCRIPT",
"title": "Main",
},
]
`;
exports[`registerCodegen should register codegen 3`] = `[]`;
exports[`registerCodegen should generate responsive code when root node is SECTION 1`] = `
[
{
"code":
"<Box boxSize="100%">
<Box boxSize="100%" />
<Box boxSize="100%" />
</Box>"
,
"language": "TYPESCRIPT",
"title": "ResponsiveSection",
},
{
"code":
"import { Box } from '@devup-ui/react'
export function ResponsiveSection() {
return <Box boxSize="100%" />
}"
,
"language": "TYPESCRIPT",
"title": "ResponsiveSection - Responsive",
},
{
"code":
"mkdir -p src/components
echo 'import { Box } from \\'@devup-ui/react\\'
export function ResponsiveSection() {
return <Box boxSize="100%" />
}' > src/components/ResponsiveSection.tsx"
,
"language": "BASH",
"title": "ResponsiveSection - Responsive CLI (Bash)",
},
{
"code":
"New-Item -ItemType Directory -Force -Path src\\components | Out-Null
@'
import { Box } from '@devup-ui/react'
export function ResponsiveSection() {
return <Box boxSize="100%" />
}
'@ | Out-File -FilePath src\\components\\ResponsiveSection.tsx -Encoding UTF8"
,
"language": "BASH",
"title": "ResponsiveSection - Responsive CLI (PowerShell)",
},
]
`;