(tree)
| 738 | * @return {BroccoliTree} |
| 739 | */ |
| 740 | packageTests(tree) { |
| 741 | let coreTestTree = this.processTests(tree); |
| 742 | |
| 743 | let testIndex = this.processTestIndex(tree); |
| 744 | let appTestTree = this.packageApplicationTests(coreTestTree); |
| 745 | let testFilesTree = this.packageTestFiles(tree, coreTestTree); |
| 746 | |
| 747 | return mergeTrees([testIndex, appTestTree, testFilesTree], { |
| 748 | annotation: 'Packaged Tests', |
| 749 | }); |
| 750 | } |
| 751 | |
| 752 | /* |
| 753 | * Replaces variables in `tests/index.html` file with values from |
no test coverage detected