Move test projects out of server folder

This commit is contained in:
Lucien Greathouse
2018-08-13 15:35:04 -07:00
parent ef0d1e7cec
commit c6982f70b4
19 changed files with 12 additions and 58 deletions

View File

@@ -0,0 +1,5 @@
{
"name": "empty",
"servePort": 23456,
"partitions": {}
}

View File

@@ -0,0 +1 @@
-- a.lua

View File

@@ -0,0 +1 @@
-- a.server.lua

View File

@@ -0,0 +1 @@
-- b.client.lua

View File

@@ -0,0 +1,10 @@
{
"name": "one-partition",
"servePort": 23456,
"partitions": {
"lib": {
"path": "lib",
"target": "ReplicatedStorage.OnePartition"
}
}
}

View File

@@ -0,0 +1 @@
-- foo.lua

View File

@@ -0,0 +1,10 @@
{
"name": "partition-to-file",
"servePort": 23456,
"partitions": {
"lib": {
"path": "foo.lua",
"target": "ReplicatedStorage.bar"
}
}
}