Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanbond committed Feb 20, 2023
1 parent 102aa27 commit c116ca6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = function(app, template, hook) {
var formio = hook.alter('formio', app.formio);
var Helper = require('./helper')(app);

var ignoreFields = ['config'];
var ignoreFields = ['config', 'plan'];

describe('Forms', function() {
// Store the temp form for this test suite.
Expand Down
2 changes: 1 addition & 1 deletion test/resource.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var assert = require('assert');
var _ = require('lodash');

module.exports = function(app, template, hook) {
var ignoreFields = ['config'];
var ignoreFields = ['config', 'plan'];

describe('Resources', function() {
// Store the temp resource for this test suite.
Expand Down

0 comments on commit c116ca6

Please sign in to comment.