forked from mdn/yari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.testing
38 lines (28 loc) · 1.34 KB
/
.env.testing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# THERE ARE NO SECRETS IN THIS FILE.
# This file exists exclusively for running the functional tests.
# These values are deliberately hardcoded.
# The relative path trick is necessary because `yarn build` will
# be running from the `./build/` directory.
CONTENT_ROOT=testing/content/files
CONTENT_TRANSLATED_ROOT=testing/translated-content/files
# Because you never benefit from the progressbar when doing mass builds in
# testing environment. And in CI, it's always disabled anyway.
BUILD_NO_PROGRESSBAR=true
BUILD_LIVE_SAMPLES_BASE_URL=http://localhost:5042
# As of right now (Nov 2020), the auto-complete search is disabled.
# It's just a temporary thing whilst MDN becomes partially Kuma and
# partially Yari.
# But all the testing is done for the auto-complete search which
# is disabled by default. This environment variable reverses that
# default.
REACT_APP_AUTOCOMPLETE_SEARCH_WIDGET=true
# These are set to fake values just to make sure the paths that
# injects the relevant script tags actually run in end-to-end testing.
BUILD_GOOGLE_ANALYTICS_MEASUREMENT_ID=G-XXXXXXXX
# The functional tests are done in a production'y way as if it had
# to go into full production mode.
BUILD_ALWAYS_ALLOW_ROBOTS=true
# Always true for testing
REACT_APP_ENABLE_PLUS=true
REACT_APP_FXA_SIGNIN_URL=/users/fxa/login/authenticate/
BASE_URL="https://developer.mozilla.org"