-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcode.test.ts.snap
More file actions
55 lines (48 loc) · 1.06 KB
/
code.test.ts.snap
File metadata and controls
55 lines (48 loc) · 1.06 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
// Bun Snapshot v1, https://bun.sh/docs/test/snapshots
exports[`registerCodegen should register codegen 1`] = `
[
{
"code":
"export function Test() {
return <Box boxSize="100%" />
}"
,
"language": "TYPESCRIPT",
"title": "Test - Components",
},
{
"code":
"mkdir -p src/components
echo 'import { Box } from \\'@devup-ui/react\\'
export function Test() {
return <Box boxSize="100%" />
}' > src/components/Test.tsx"
,
"language": "BASH",
"title": "Test - Components CLI (Bash)",
},
{
"code":
"New-Item -ItemType Directory -Force -Path src\\components | Out-Null
@'
import { Box } from '@devup-ui/react'
export function Test() {
return <Box boxSize="100%" />
}
'@ | Out-File -FilePath src\\components\\Test.tsx -Encoding UTF8"
,
"language": "BASH",
"title": "Test - Components CLI (PowerShell)",
},
]
`;
exports[`registerCodegen should register codegen 2`] = `
[
{
"code": "<Box boxSize="100%" />",
"language": "TYPESCRIPT",
"title": "Main",
},
]
`;
exports[`registerCodegen should register codegen 3`] = `[]`;