Skip to content

Commit 5b86c7b

Browse files
committed
Fix script/tc for framing.
1 parent 26dad57 commit 5b86c7b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

script/tc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,12 +191,14 @@ opts.each do |opt, arg|
191191
end
192192
end
193193

194-
manifests = %w(expand compact flatten frame fromRdf remote-doc toRdf)
194+
manifests = %w(expand compact flatten fromRdf remote-doc toRdf).map do |man|
195+
"#{Fixtures::SuiteTest::SUITE}#{man}-manifest.jsonld"
196+
end + ["#{Fixtures::SuiteTest::FRAME_SUITE}frame-manifest.jsonld"]
195197

196198
earl_preamble(options) if options[:earl]
197199

198200
manifests.each do |man|
199-
Fixtures::SuiteTest::Manifest.open("#{Fixtures::SuiteTest::SUITE}#{man}-manifest.jsonld") do |m|
201+
Fixtures::SuiteTest::Manifest.open(man) do |m|
200202
m.entries.each do |tc|
201203
next unless ARGV.empty? || ARGV.any? {|n| tc.property('@id').match(/#{n}/) || tc.property('input').match(/#{n}/)}
202204
run_tc(man, tc, options)

0 commit comments

Comments
 (0)