The english wikipedia page requires a symmetric matrix to determine definiteness. ( A is an n × n symmetric matrix ...)
The german Wikipedia page on the definiteness of matrices states that a $n\times n$ Matrix does not necessarily have to be symmetric to assert definitness: (translated into english): An arbitrary (possibly, symmetric or hermitic) $(n\times n)$-Matrix $A$ ...
The procedure to determine definiteness is the same both times: Simply evaluate the sign of $x^\top A x$ and do the usual case distinction.
So as an example: Let $A = \begin{pmatrix} \alpha & \beta\\ -\beta & \alpha \end{pmatrix},\quad \alpha, \beta \in \mathbb{R}$
$$ \begin{pmatrix} x_1 & x_2 \end{pmatrix} \begin{pmatrix} \alpha & \beta\\ -\beta & \alpha \end{pmatrix} \begin{pmatrix} x_1 \\ x_2 \end{pmatrix} = \alpha (x_1^2+x_2^2) \Rightarrow A \text{ is } \begin{cases} \text{positive definite} \quad \text{if} \quad \alpha > 0\\ \text{negative definite} \quad\! \text{if} \quad \alpha < 0 \end{cases}$$
So A is asymmetric (anti-symmetric), yet definite for all nonzero $\alpha, \beta$.
Why would a matrix have to be symmetric in order to tell whether it is definite ? Where does that restriction arise from ?
btw: the eigenvalue-method does not work for asymmetric matrices (complex eigenvalues), but the $x^\top A x$ does.