Skip to content

Commit 274037b

Browse files
committed
remove some tests that depend on google apis for now (no credentials) and try running all tests
1 parent 19ac574 commit 274037b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/makefile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,5 @@ jobs:
9999
npm run mocha -- --grep modules --invert
100100
else
101101
echo "Running all tests"
102-
npm run mocha -- -g "bar-chart-test.arr"
102+
npm run mocha
103103
fi

src/web/js/beforePyret.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1468,7 +1468,7 @@ $(function() {
14681468
initialState
14691469
});
14701470
}
1471-
else if((window.parent && (window.parent !== window)) || process.env.NODE_ENV === "development") {
1471+
else if((window.parent && (window.parent !== window))) {
14721472
window.MESSAGES = makeEvents({ CPO: CPO, sendPort: window.parent, receivePort: window, initialState });
14731473
}
14741474
});

test/embed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ describe("Embedding API Basics – Single embedded instance", function() {
4545
this.browser.call(done);
4646
});
4747

48-
it("should load starter files", function(done) {
48+
xit("should load starter files", function(done) {
4949
this.timeout(15000);
5050
var self = this;
5151
this.browser.get(this.base + "/embed/embed1.html?" + this.base);

test/modules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var tester = require("../test-util/util.js");
22

3-
describe("Running Module programs", function() {
3+
xdescribe("Running Module programs", function() {
44
beforeEach(tester.setup);
55
afterEach(tester.teardown);
66

test/sheets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var tester = require("../test-util/util.js");
22

3-
describe("Running Google Sheets programs", function() {
3+
xdescribe("Running Google Sheets programs", function() {
44
beforeEach(tester.setup);
55
afterEach(tester.teardown);
66

0 commit comments

Comments
 (0)