summaryrefslogtreecommitdiffstats
path: root/commands/commands_test.go
diff options
context:
space:
mode:
authorJoe Mooring <joe.mooring@veriphor.com>2022-11-20 08:10:39 -0800
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-11-21 09:42:40 +0100
commit85e2ac1a4424fdde673b663c37043ece61212f0c (patch)
treed57922e32078664484d5a5b3e692efb2a97a4144 /commands/commands_test.go
parent74776726dfbe33edccd9814a7871710817a843f2 (diff)
commands: Create assets directory with new site
Closes #10460
Diffstat (limited to 'commands/commands_test.go')
-rw-r--r--commands/commands_test.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/commands/commands_test.go b/commands/commands_test.go
index 5b5e9aa81..8f1ef825d 100644
--- a/commands/commands_test.go
+++ b/commands/commands_test.go
@@ -117,11 +117,13 @@ func TestExecute(t *testing.T) {
func checkNewSiteInited(c *qt.C, basepath string) {
paths := []string{
- filepath.Join(basepath, "layouts"),
- filepath.Join(basepath, "content"),
filepath.Join(basepath, "archetypes"),
- filepath.Join(basepath, "static"),
+ filepath.Join(basepath, "assets"),
+ filepath.Join(basepath, "content"),
filepath.Join(basepath, "data"),
+ filepath.Join(basepath, "layouts"),
+ filepath.Join(basepath, "static"),
+ filepath.Join(basepath, "themes"),
filepath.Join(basepath, "config.toml"),
}