Skip to content

Commit a92aaee

Browse files
author
Ben Newman
committed
Test that various packages can now be imported using pure Node.
Closes meteor#6165. Closes meteor#6173. Closes meteor#6285. Closes meteor#6313. Closes meteor#6373.
1 parent c9660d9 commit a92aaee

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

tools/tests/apps/modules/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@
44
"description": "Test app exercising many aspects of the Meteor module system.",
55
"private": true,
66
"dependencies": {
7+
"aws-sdk": "^2.2.41",
8+
"github": "^0.2.4",
79
"meteor-node-stubs": "^0.2.0",
810
"moment": "2.11.1",
9-
"regenerator": "^0.8.42"
11+
"mssql": "^3.1.1",
12+
"regenerator": "^0.8.42",
13+
"stripe": "^4.4.0",
14+
"winston": "^2.2.0"
1015
},
1116
"scripts": {
1217
"test": "METEOR_PROFILE=100 ../../../../meteor test --full-app --driver-package practicalmeteor:mocha"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
import assert from "assert";
2+
3+
import "github";
4+
import "aws-sdk";
5+
import "stripe";
6+
import "winston";
7+
import "mssql";
8+
29
assert.strictEqual(Meteor.isServer, true);
310
assert.strictEqual(Meteor.isClient, false);
11+
412
export default module.id;

0 commit comments

Comments
 (0)