diff --git a/katas/acceptance-tests/README.md b/katas/acceptance-tests/README.md
new file mode 100644
index 0000000..1976b94
--- /dev/null
+++ b/katas/acceptance-tests/README.md
@@ -0,0 +1,33 @@
+# Acceptance Tests
+
+## Problem Description
+
+"Acceptance tests are created from user stories. The customer specifies scenarios to test when a user story has been correctly implemented. A story can have one or many acceptance tests, what ever it takes to ensure the functionality works.
+
+Acceptance tests are black box system tests. Each acceptance test represents some expected result from the system. Customers are responsible for verifying the correctness of the acceptance tests and reviewing test scores to decide which failed tests are of highest priority. Acceptance tests are also used as regression tests prior to a production release."
+
+From: http://www.extremeprogramming.org/rules/functionaltests.html
+
+### 1. Choosing website to be tested
+
+- RealWorld
+
+### 2. Writing user stories
+
+- User Stories
+
+### 3. Writing tests
+
+#### Tests runners
+
+- Protractor (JavaScript)
+- Cypress (JavaScript)
+
+#### BDD
+
+- Cucumber
+
+### 4. Testing in multiple browsers
+
+- BrowserStack
+- Sauce Labs
\ No newline at end of file