Skip to content

Commit

Permalink
fix: remove babel register, update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mathisonian committed Apr 15, 2022
1 parent 66d3d94 commit d293dbd
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 10 deletions.
1 change: 0 additions & 1 deletion packages/idyll-cli/test/basic-project/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ before(function(done) {
css: join(PROJECT_DIR, 'styles.css'),
googleFonts: ['Hanalei Fill'],
favicon: 'static/favicon.ico',
transformComponents: true,
compiler: {
spellcheck: false
},
Expand Down
1 change: 0 additions & 1 deletion packages/idyll-cli/test/batteries-included/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ describe('batteries-included project', function() {
idyll({
inputFile: join(PROJECT_DIR, 'index.idl'),
output: PROJECT_BUILD_DIR,
transformComponents: true,
compiler: {
spellcheck: false
},
Expand Down
4 changes: 0 additions & 4 deletions packages/idyll-cli/test/env-options/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ describe('env-options', function() {
theme: join(PROJECT_DIR, 'custom-theme.css'),
css: join(PROJECT_DIR, 'styles.css'),
googleFonts: ['Hanalei Fill'],
transformComponents: true,
favicon: 'static/favicon.ico',
compiler: {
spellcheck: false
Expand Down Expand Up @@ -70,7 +69,6 @@ describe('env-options', function() {
temp: '.idyll',
template: resolve(join(__dirname, '/../../src/client/_index.html')),
theme: join(PROJECT_DIR, 'custom-theme.css'),
transformComponents: true,
transform: [],
watch: false
});
Expand All @@ -86,7 +84,6 @@ describe('env-options', function() {
theme: join(PROJECT_DIR, 'custom-theme.css'),
css: join(PROJECT_DIR, 'styles.css'),
googleFonts: ['Hanalei Fill'],
transformComponents: true,
favicon: 'static/favicon.ico',
compiler: {
spellcheck: false
Expand Down Expand Up @@ -122,7 +119,6 @@ describe('env-options', function() {
temp: '.idyll',
template: resolve(join(__dirname, '/../../src/client/_index.html')),
theme: join(PROJECT_DIR, 'custom-theme.css'),
transformComponents: true,
transform: [],
watch: false
});
Expand Down
1 change: 0 additions & 1 deletion packages/idyll-cli/test/minified-project/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ describe('minified-project', function() {
datasets: join(PROJECT_DIR, 'data'),
layout: 'centered',
theme: join(PROJECT_DIR, 'custom-theme.css'),
transformComponents: true,
css: join(PROJECT_DIR, 'styles.css'),
googleFonts: ['Hanalei Fill'],
favicon: 'static/favicon.ico',
Expand Down
1 change: 0 additions & 1 deletion packages/idyll-cli/test/missing-assets/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ function createWithOptions(opts) {
css: customCSSPath,
outputCSS: '__idyll_styles.css',
outputJS: '__idyll_index.js',
transformComponents: true,
compiler: {
spellcheck: false
},
Expand Down
1 change: 0 additions & 1 deletion packages/idyll-cli/test/multiple-component-dirs/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ describe('multiple component directories', function() {
datasets: join(PROJECT_DIR, 'data'),
layout: 'centered',
theme: join(PROJECT_DIR, 'custom-theme.css'),
transformComponents: true,
css: join(PROJECT_DIR, 'styles.css'),
compiler: {
spellcheck: false
Expand Down
1 change: 0 additions & 1 deletion packages/idyll-cli/test/path-builder/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ function opts(inputPath, outputPath) {
output: 'build',
outputCSS: 'idyll_styles.css',
outputJS: 'idyll_index.js',
transformComponents: true,
port: 3000,
temp: '.idyll',
template: '',
Expand Down

0 comments on commit d293dbd

Please sign in to comment.