Skip to content

Commit

Permalink
By default setup only Desktop and Web subprojects
Browse files Browse the repository at this point in the history
  • Loading branch information
dukescript committed Jun 1, 2019
1 parent 8f0da0b commit 2bbafea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

-->
include 'desktop'
include 'app'
//include 'app'
include 'web'
include 'ios'
//include 'ios'

Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ public void testCreateFromArchetype() throws Exception {
assertPackage("my.pkg.x").
assertName("BrowserMain").
assertNoLicense();
assertFile("settings include only desktop and web", dest, "settings.gradle").
assertText("//include 'app'").
assertText("//include 'ios'").
assertText("include 'desktop'").
assertText("include 'web'");
}

private AssertContent assertFile(String msg, FileObject root, String... path) throws IOException {
Expand Down

0 comments on commit 2bbafea

Please sign in to comment.