Skip to content

Commit e46a08d

Browse files
author
Ben Newman
committed
Fix meteor bundle-related self-tests.
1 parent 76ea47e commit e46a08d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tools/tests/bundle.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@ var Sandbox = selftest.Sandbox;
33
var files = require('../fs/files.js');
44
import { execSync } from 'child_process';
55

6-
selftest.define("bundle", ["slow"], function () {
6+
selftest.define("bundle", function () {
77
var s = new Sandbox();
88
var run;
99

1010
s.createApp("myapp", "standard-app");
1111
s.cd("myapp");
12-
run = s.run("bundle", "myapp.tgz");
12+
run = s.run("bundle", "../myapp.tgz");
1313
run.waitSecs(60);
1414
run.expectExit(0);
1515

16-
var tarball = files.pathJoin(s.cwd, "myapp.tgz");
16+
var tarball = files.pathJoin(s.cwd, "../myapp.tgz");
1717
selftest.expectEqual(files.exists(tarball), true);
1818
});
1919

20-
selftest.define("bundle - verify sanitized asset names", ["slow"], function () {
20+
selftest.define("bundle - verify sanitized asset names", function () {
2121
const s = new Sandbox();
2222
let run;
2323

2424
s.createApp("sanitized-app", "sanitized-app");
2525
s.cd("sanitized-app");
26-
run = s.run("bundle", "sanitized-app.tgz");
26+
run = s.run("bundle", "../sanitized-app.tgz");
2727
run.waitSecs(60);
2828
run.expectExit(0);
2929

30-
const tarball = files.pathJoin(s.cwd, "sanitized-app.tgz");
30+
const tarball = files.pathJoin(s.cwd, "../sanitized-app.tgz");
3131
const sanitizedFilename = 'Meteor_:-@2x.png';
3232
selftest.expectTrue(
3333
execSync(`tar -tf ${tarball}`).toString().indexOf(sanitizedFilename) > -1

0 commit comments

Comments
 (0)