diff --git a/docs/introduction/project-setup.mdx b/docs/introduction/project-setup.mdx index fac5b209fb..6fb3fb079b 100644 --- a/docs/introduction/project-setup.mdx +++ b/docs/introduction/project-setup.mdx @@ -140,7 +140,7 @@ patch or create if they are missing: * `android/build.gradle` * `android/app/build.gradle` * **Native test code:** - * `android/app/src/androidTest/java/com//DetoxTest.java` + * `android/app/src/androidTest/java/DetoxTest.java` * **Manifests:** * `android/app/src/main/AndroidManifest.xml` * `android/app/src/main/res/xml/network_security_config.xml` @@ -249,10 +249,9 @@ run tests with your app built in **release mode**. Detox requires that your project has a single dummy native Android test with some special content, which will be picked up by `testRunner` that you just added in the previous step, so let's create it now. -Copy the snippet below to create a file under the following path (where `` is your actual -package name): +Copy the snippet below to create a file under the following path: -```java title="android/app/src/androidTest/java/com//DetoxTest.java" showLineNumbers +```java title="android/app/src/androidTest/java/DetoxTest.java" showLineNumbers // highlight-next-line package com.; // (1)