Skip to content

Commit 78372b5

Browse files
committed
material mkdocs init
1 parent 1f606a6 commit 78372b5

13 files changed

+96
-1
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
# Cookbook
1+
# Cookbook
2+
3+
Open source documentation about UI testing. Let's make it easier together.
4+
5+
Work in progress.

docs/basics.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Basics
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Instrumented testing basics
2+
3+

docs/basics/testing_theory.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Testing theory
2+
3+

docs/home/index.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Home
2+
3+
Despite the annual improvement of tools — everything related to Android UI testing is still challenging.
4+
5+
The goal of this blog is to make the process of introducing instrumented tests into your team smoother and avoid repeating our mistakes.
6+
7+
Here you will find useful practices, case and the experience of other companies.
8+
9+
10+
11+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Emulator vs real device
2+
3+
To be done

docs/practices/flakiness.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Flakiness
2+
3+
To be done
4+

docs/practices/network.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Network
2+
3+
To be done
4+
5+

docs/practices/page_object.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Page object
2+
3+
To be done
4+
5+
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Shared test components
2+
To be done
3+
4+

docs/practices/state_clearing.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Clearing state
2+
3+
To be done

docs/practices/test_runners_review.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Test runners review
2+
3+
To be done
4+
5+
6+

mkdocs.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
site_name: Proper Android UI Testing
2+
remote_branch: main
3+
4+
theme:
5+
name: 'material'
6+
palette:
7+
- scheme: slate
8+
primary: black
9+
toggle:
10+
icon: material/weather-sunny
11+
name: Switch to light mode
12+
- scheme: default
13+
toggle:
14+
icon: material/weather-night
15+
name: Switch to dark mode
16+
features:
17+
- navigation.tabs
18+
19+
20+
nav:
21+
- Home:
22+
- home/index.md
23+
- Basics:
24+
- Testing theory: basics/testing_theory.md
25+
- Instrumented testing: basics/instrumented_testing_basics.md
26+
- Practices:
27+
- Application state: practices/state_clearing.md
28+
- Test runners: practices/test_runners_review.md
29+
- Network: practices/network.md
30+
- Emulator vs real device: practices/emulator_vs_real_device.md
31+
- Flakiness: practices/flakiness.md
32+
- Shared test components: practices/shared_test_components.md
33+
- Page object: practices/page_object.md
34+
35+
markdown_extensions:
36+
- admonition
37+
- pymdownx.details
38+
39+
40+
include_search_page: false
41+
search_index_only: true
42+
43+
language: en

0 commit comments

Comments
 (0)