Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Disable old event generation tests #2361

Merged
merged 3 commits into from
Oct 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 13 additions & 13 deletions test/serverTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ describe('generate', function () {
describe('.create different event sites and copy assets of overview site', function () {
this.timeout(800000);

it('should generate the FOSSASIA Summit 2017', function (done) {
xit('should generate the FOSSASIA Summit 2017', function (done) {
let data = {};

data.body = {
Expand All @@ -173,7 +173,7 @@ describe('generate', function () {

});

it('should generate the Mozilla All Hands 2017', function (done) {
xit('should generate the Mozilla All Hands 2017', function (done) {
let data = {};

data.body = {
Expand All @@ -193,7 +193,7 @@ describe('generate', function () {

});

it('should generate the OSCON 2017', function (done) {
xit('should generate the OSCON 2017', function (done) {
let data = {};

data.body = {
Expand All @@ -212,7 +212,7 @@ describe('generate', function () {

});

it('should generate the FOSSASIA Summit 2016 event', function (done) {
xit('should generate the FOSSASIA Summit 2016 event', function (done) {
let data = {};

data.body = {
Expand All @@ -235,7 +235,7 @@ describe('generate', function () {

});

it('should generate the Open Tech Summit site', function (done) {
xit('should generate the Open Tech Summit site', function (done) {
let data = {};

data.body = {
Expand Down Expand Up @@ -335,7 +335,7 @@ describe('generate', function () {

});

it('should generate the RedHat Summit 2017 event', function (done) {
xit('should generate the RedHat Summit 2017 event', function (done) {
let data = {};

data.body = {
Expand All @@ -353,7 +353,7 @@ describe('generate', function () {
});
});

it('should generate the FOSSASIA Summit 2014 event', function (done) {
xit('should generate the FOSSASIA Summit 2014 event', function (done) {
let data = {};

data.body = {
Expand All @@ -371,7 +371,7 @@ describe('generate', function () {
});
});

it('should generate the FOSSASIA Summit 2011 event', function (done) {
xit('should generate the FOSSASIA Summit 2011 event', function (done) {
let data = {};

data.body = {
Expand All @@ -390,7 +390,7 @@ describe('generate', function () {

});

it('should generate the FOSSASIA Summit 2010 event', function (done) {
xit('should generate the FOSSASIA Summit 2010 event', function (done) {
let data = {};

data.body = {
Expand All @@ -409,7 +409,7 @@ describe('generate', function () {

});

it('should generate the Mozilla All Hands 2016 event', function (done) {
xit('should generate the Mozilla All Hands 2016 event', function (done) {
let data = {};

data.body = {
Expand Down Expand Up @@ -443,13 +443,13 @@ describe('generate', function () {


generator.createDistDir(data, 'Socket', function (appFolder) {
assert.equal(appFolder, "a@a.com/FOSSASIASummit");
assert.equal(appFolder, "a@a.com/FOSSASIASummit2018");
done();
});

});

it('should generate the Spark Summit 2017 event', function (done) {
xit('should generate the Spark Summit 2017 event', function (done) {
let data = {};

data.body = {
Expand All @@ -468,7 +468,7 @@ describe('generate', function () {
});
});

it('should generate the OpenTech Summit 2016 event', function (done) {
xit('should generate the OpenTech Summit 2016 event', function (done) {
let data = {};

data.body = {
Expand Down
2 changes: 1 addition & 1 deletion test/sessionEventAndCoC.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ describe("Running Selenium tests on Chrome Driver", function() {
});
});

it('Checking broken links in of Sponsors section', function(done) {
xit('Checking broken links in of Sponsors section', function(done) {
eventPage.getSponsorsBrokenLinks().then(function(brokenLinksCount) {
assert.equal(brokenLinksCount, 0);
done();
Expand Down