diff --git a/.gitignore b/.gitignore index b12513e1..88cdf551 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,3 @@ # Snapshot files from the 'insta' Rust crate **/*.snap.new - -# Selene generates a roblox.toml file that should not be checked in. -/roblox.toml \ No newline at end of file diff --git a/foreman.toml b/foreman.toml index c1275b8d..20ce14cb 100644 --- a/foreman.toml +++ b/foreman.toml @@ -1,4 +1,4 @@ [tools] rojo = { source = "rojo-rbx/rojo", version = "7.1.1" } run-in-roblox = { source = "rojo-rbx/run-in-roblox", version = "0.3.0" } -selene = { source = "Kampfkarren/selene", version = "0.17.0" } +selene = { source = "Kampfkarren/selene", version = "0.18.2" } diff --git a/testez.toml b/testez.toml deleted file mode 100644 index c2c5a984..00000000 --- a/testez.toml +++ /dev/null @@ -1,66 +0,0 @@ -[[afterAll.args]] -type = "function" - -[[afterEach.args]] -type = "function" - -[[beforeAll.args]] -type = "function" - -[[beforeEach.args]] -type = "function" - -[[describe.args]] -type = "string" - -[[describe.args]] -type = "function" - -[[describeFOCUS.args]] -type = "string" - -[[describeFOCUS.args]] -type = "function" - -[[describeSKIP.args]] -type = "string" - -[[describeSKIP.args]] -type = "function" - -[[expect.args]] -type = "any" - -[[FIXME.args]] -type = "string" -required = false - -[FOCUS] -args = [] - -[[it.args]] -type = "string" - -[[it.args]] -type = "function" - -[[itFIXME.args]] -type = "string" - -[[itFIXME.args]] -type = "function" - -[[itFOCUS.args]] -type = "string" - -[[itFOCUS.args]] -type = "function" - -[[itSKIP.args]] -type = "string" - -[[itSKIP.args]] -type = "function" - -[SKIP] -args = [] diff --git a/testez.yml b/testez.yml new file mode 100644 index 00000000..08be74e1 --- /dev/null +++ b/testez.yml @@ -0,0 +1,53 @@ +--- +globals: + FIXME: + args: + - required: false + type: string + FOCUS: + args: [] + SKIP: + args: [] + afterAll: + args: + - type: function + afterEach: + args: + - type: function + beforeAll: + args: + - type: function + beforeEach: + args: + - type: function + describe: + args: + - type: string + - type: function + describeFOCUS: + args: + - type: string + - type: function + describeSKIP: + args: + - type: string + - type: function + expect: + args: + - type: any + it: + args: + - type: string + - type: function + itFIXME: + args: + - type: string + - type: function + itFOCUS: + args: + - type: string + - type: function + itSKIP: + args: + - type: string + - type: function