Variable: projectile-default-test-directory
projectile-default-test-directory is a customizable variable defined
in projectile.el.
Value
"test/"
Documentation
The default value of a project's test-dir property.
It's used as a fallback in the case the property is not set for a project
type when projectile-toggle-between-implementation-and-test is used.
This variable was added, or its default value changed, in projectile version 2.6.0.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-default-test-directory "test/"
"The default value of a project's test-dir property.
It's used as a fallback in the case the property is not set for a project
type when `projectile-toggle-between-implementation-and-test' is used."
:group 'projectile
:type 'string
:package-version '(projectile . "2.6.0"))