Skip to content

Commit 5185c3d

Browse files
Merge pull request #52 from givery-technology/fix/#51
no_fullscanの判定が効かない
2 parents 7350016 + a7b5311 commit 5185c3d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/assertions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ module.exports = function(chai, util) {
262262

263263
function fullscan(records, tables, every) {
264264
const re = new RegExp(
265-
`^SCAN TABLE (${(tables || []).join('|') || '\\w+'})`
265+
`^SCAN(?: TABLE)? (${(tables || []).join('|') || '\\w+'})`
266266
);
267267
return records[every ? 'every' : 'some'](record => re.test(record.detail));
268268
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "track-db-test-library",
3-
"version": "2.6.0-rc6",
3+
"version": "2.6.0-rc7",
44
"description": "Test utility for Track database challenges",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)