Skip to content

Commit

Permalink
chore: Disable old event generation tests (#2361)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamareebjamal authored Oct 13, 2020
1 parent 23faa61 commit 425e8c8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
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, "[email protected]/FOSSASIASummit");
assert.equal(appFolder, "[email protected]/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

0 comments on commit 425e8c8

Please sign in to comment.