Skip to content

Commit dab7a80

Browse files
authored
test: address pr comments (#86)
* test: moved testdata folder * test: make test parallel * chore: remove comments
1 parent 4972aec commit dab7a80

File tree

265 files changed

+3
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

265 files changed

+3
-3
lines changed

internal/interpreter/interpreter_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ import (
1717
"github.com/stretchr/testify/require"
1818
)
1919

20-
const scriptsFolder = "../../testdata/script-tests"
20+
const scriptsFolder = "testdata/script-tests"
2121

2222
func TestScripts(t *testing.T) {
23+
t.Parallel()
24+
2325
rawSpecs, err := specs_format.ReadSpecsFiles([]string{scriptsFolder})
2426
require.Nil(t, err)
2527

@@ -419,8 +421,6 @@ func TestNegativeBalanceLiteral(t *testing.T) {
419421
test(t, tc)
420422
}
421423

422-
// TODO TestVariablesParsing, TestSetVarsFromJSON, TestResolveResources, TestResolveBalances, TestMachine
423-
424424
func TestOverdraftBadCurrency(t *testing.T) {
425425
tc := NewTestCase()
426426
tc.compile(t, `

0 commit comments

Comments
 (0)