[ALOY-779] Add optimized config.json to each test app
GitHub Issue | n/a |
---|---|
Type | Story |
Priority | Medium |
Status | Resolved |
Resolution | Fixed |
Resolution Date | 2013-08-08T02:31:29.000+0000 |
Affected Version/s | n/a |
Fix Version/s | Alloy 1.3.0 |
Components | Documentation, Samples & Templates |
Labels | n/a |
Reporter | Tony Lukasavage |
Assignee | Unknown |
Created | 2013-08-08T02:19:35.000+0000 |
Updated | 2018-03-07T22:26:00.000+0000 |
Description
There's a number of ways to speed up Alloy compile time. 2 simples ones are setting the following values in the config.json:
{
"sourcemap": false,
"adapters": []
}
This will skip the sourcemap step and won't include any sync adapters. Each test app should be evaluated based on its needs and have an optimized config.json to make the automated test suite run as quickly as possible.
PR: https://github.com/appcelerator/alloy/pull/214 Functional testing can pass by making sure the automated test suite runs without error. It should be slightly faster than before this PR, about 5-10%.