Skip to content

Commit 0ff2401

Browse files
authored
Merge pull request #3 from qoretechnologies/test/string-field-tests
add string/boolean/number/color/radiogroup fields with interaction tests
2 parents bb25919 + 92621a7 commit 0ff2401

30 files changed

+25458
-1535
lines changed

.prettierrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"printWidth": 100,
44
"semi": true,
55
"singleQuote": true,
6-
"jsxSingleQuote": true
6+
"jsxSingleQuote": true,
7+
"experimentalTernaries": true
78
}

mock/fields.tsx

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
export const markdown = `# Welcome to StackEdit!
2+
3+
Hi! I'm your first Markdown file in **StackEdit**. If you want to learn about StackEdit, you can read me. If you want to play with Markdown, you can edit me. Once you have finished with me, you can create new files by opening the **file explorer** on the left corner of the navigation bar.
4+
5+
6+
# Files
7+
8+
StackEdit stores your files in your browser, which means all your files are automatically saved locally and are accessible **offline!**
9+
10+
## Create files and folders
11+
12+
The file explorer is accessible using the button in left corner of the navigation bar. You can create a new file by clicking the **New file** button in the file explorer. You can also create folders by clicking the **New folder** button.
13+
14+
## Switch to another file
15+
16+
All your files and folders are presented as a tree in the file explorer. You can switch from one to another by clicking a file in the tree.
17+
`;
18+
19+
export const longStringText = `✔ Checking your system
20+
✔ Locating Application
21+
✔ Preparing native dependencies
22+
✔ Compiling Main Process Code
23+
✔ Launch Dev Servers
24+
✔ Compiling Preload Scripts
25+
✔ Launching Application
26+
`;

0 commit comments

Comments
 (0)