diff --git a/tests/app/ui/action-bar/action-bar.md b/tests/app/ui/action-bar/action-bar.md
deleted file mode 100644
index 4846f0eb1..000000000
--- a/tests/app/ui/action-bar/action-bar.md
+++ /dev/null
@@ -1,147 +0,0 @@
----
-nav-title: "ActionBar How-To"
-title: "action-bar"
-environment: nativescript
-description: "Examples for using ActionBar"
-previous_url: /ApiReference/ui/action-bar/HOW-TO
----
-# ActionBar
-Using a ActionBar requires the action-bar module.
-{%snippet actionbar-common-require%}
-
-
-## Setting Title and Icon
-```XML
-
-
- {%raw%}{%endraw%}
-
- ...
-
-```
-The icon can only be set in Android platform. It is hidden by default, but you explicitly control its visibility with the `android.iconVisibility' property.
-
-## Setting Custom Title View
-```XML
-
-
-
-
-
-
-
-
-
-
-
-
- ...
-
-```
-
-## Setting Action Items
-```XML
-
-
-
-
-
-
-
-
-
-
- ...
-
-```
-
-The position option is platform-specific. The available values are as follows:
-* **Android** - `actionBar`, `actionBarIfRoom` and `popup`. The default is `actionBar`.
-* **iOS** - `left` and `right`. The default is `left`.
-
-## Displaying Platform-Specific System Icons on Action Items
-```XML
-
-
-
-
-
-
-
-
-
-
- ...
-
-```
-
-### iOS
-Set `ios.systemIcon` to a number representing the iOS system item to be displayed.
-Use this property instead of `ActionItem.icon` if you want to diplsay a built-in iOS system icon.
-Note: systemIcon is not supported on NavigationButton in iOS
-The value should be a number from the [UIBarButtonSystemItem](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIBarButtonItem_Class/#//apple_ref/c/tdef/UIBarButtonSystemItem) enumeration:
-0: `Done`
-1: `Cancel`
-2: `Edit`
-3: `Save`
-4: `Add`
-5: `FlexibleSpace`
-6: `FixedSpace`
-7: `Compose`
-8: `Reply`
-9: `Action`
-10: `Organize`
-11: `Bookmarks`
-12: `Search`
-13: `Refresh`
-14: `Stop`
-15: `Camera`
-16: `Trash`
-17: `Play`
-18: `Pause`
-19: `Rewind`
-20: `FastForward`
-21: `Undo`
-22: `Redo`
-23: `PageCurl`
-
-### Android
-Set `android.systemIcon` the name of the system drawable resource to be displayed.
-Use this property instead of `ActionItem.icon` if you want to diplsay a built-in Android system icon.
-The value should be a string such as 'ic_menu_search' if you want to display the built-in Android Menu Search icon for example.
-For a full list of Android drawable names, please visit http://androiddrawables.com
-
-## Displaying Custom View in Action Items
-```XML
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...
-
-```
-
-## Setting Navigation Button
-```XML
-
-
-
-
-
- ...
-
-```
-Setting `text` for the navigation button is not supported in Android. You can use `icon` or `android.systemIcon` to set the image in Android.
-Setting `ios.systemIcon` for the navigation button is not supported in iOS.
-