Skip to content

Commit 37b7adb

Browse files
test: xfail failing tests
See #63
1 parent c68a264 commit 37b7adb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/integration/fockups_test.lua

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,10 @@ g.test_error_in_migrations = function()
124124
}
125125
]] } })
126126
local result = g.cluster.main_server:http_request('post', '/migrations/up', { json = {}, raise = false })
127+
t.assert_str_contains(result.code, 500)
128+
129+
t.xfail('See https://github.com/tarantool/migrations/issues/63')
130+
127131
t.assert_str_contains(result.body, 'Oops')
128132
t.assert_str_contains(result.body, 'Errors happened during migrations')
129133
end
@@ -150,6 +154,10 @@ g.test_inconsistent_migrations = function()
150154
]])
151155

152156
local result = g.cluster.main_server:http_request('post', '/migrations/up', { json = {}, raise = false })
157+
t.assert_str_contains(result.code, 500)
158+
159+
t.xfail('See https://github.com/tarantool/migrations/issues/63')
160+
153161
t.assert_str_contains(result.body, 'Not all migrations applied')
154162
end
155163

0 commit comments

Comments
 (0)