ECMAScript is a language.
What we have in browsers (and other clients) is ECMAScript-compliant implementations - JavaScript (used in Mozilla based clients), JScript (used in Internet Explorer and Windows Script Host), ActionScript (used in Adobe Flash), etc.
Some of these implementations - mainly those used in contemporary browsers - are based on 3rd edition of ECMA-262 standard, while others - such as latest ActionScript - on 4th edition of the very same standard. Note that 4th edition is currently abandoned in favor of 5th one, which many browsers have already started implementing.
The test suite for 3rd edition was recently released by Google. The one for 5th edition is currently in the works as well.