File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
mocksequencer/mocksequencer_test Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -142,9 +142,9 @@ func TestCloseBatchIntegration(t *testing.T) {
142
142
})
143
143
}
144
144
145
- // TestOpenNextBatch checks that we're able to enqueue transactions for the next batch even though
145
+ // TestOpenNextBatchIntegration checks that we're able to enqueue transactions for the next batch even though
146
146
// the l2 chain hasn't processed the last block.
147
- func TestOpenNextBatch (t * testing.T ) {
147
+ func TestOpenNextBatchIntegration (t * testing.T ) {
148
148
if testing .Short () {
149
149
t .Skip ("skipping integration test" )
150
150
}
Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ func newTestConfig(t *testing.T) *config.Config {
29
29
}
30
30
31
31
func TestMockEthIntegration (t * testing.T ) {
32
+ if testing .Short () {
33
+ t .Skip ("skipping integration test" )
34
+ }
32
35
cfg := newTestConfig (t )
33
36
eth := RunMockEthServer (t )
34
37
defer eth .Teardown ()
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ func init() {
18
18
testlog .Setup ()
19
19
}
20
20
21
- func TestServerDecryption (t * testing.T ) {
21
+ func TestServerDecryptionIntegration (t * testing.T ) {
22
22
if testing .Short () {
23
23
t .Skip ("skipping integration test" )
24
24
}
You can’t perform that action at this time.
0 commit comments