Readme added for Tests

This commit is contained in:
Vladimir Enchev
2014-05-13 10:03:42 +03:00
parent 862282d746
commit d6a3f385bf
2 changed files with 12 additions and 0 deletions

View File

@ -231,6 +231,12 @@
<ItemGroup>
<Content Include="timer\Readme.md" />
</ItemGroup>
<ItemGroup>
<Content Include="Deploy\Readme.md" />
</ItemGroup>
<ItemGroup>
<Content Include="Tests\Readme.md" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)' == 'iOS'">
<TypeScriptModuleKind>commonjs</TypeScriptModuleKind>
<TypeScriptRemoveComments>True</TypeScriptRemoveComments>

6
Tests/Readme.md Normal file
View File

@ -0,0 +1,6 @@
To run tests please build using one of the *_Tests build configurations and call runAll() method of the Tests module. For example:
```js
var tests = require("Tests");
tests.runAll();
```