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.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/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)