@nx/gatsby
Version:
Gatsby Plugin for Nx
44 lines (38 loc) • 1.19 kB
text/typescript
import { readJson, Tree, writeJson } from '@nx/devkit';
import { createTreeWithEmptyWorkspace } from '@nx/devkit/testing';
import addJsInclude from './add-js-include-11-6-0';
// TODO: should remove this migration since it's more than 2 versions old
describe.skip('Add js include 11.6.0', () => {
let tree: Tree;
beforeEach(async () => {
tree = createTreeWithEmptyWorkspace({ layout: 'apps-libs' });
});
it('should add js patterns to tsconfig "include" and "exclude"', async () => {
writeJson(tree, 'workspace.json', {
projects: {
app1: {
root: 'apps/app1',
targets: {
build: {
executor: '@nx/gatsby:build',
},
},
},
},
});
writeJson(tree, 'nx.json', {
projects: {
app1: {},
},
});
writeJson(tree, 'apps/app1/tsconfig.app.json', {
include: ['**/*.ts'],
exclude: ['**/*.spec.tsx'],
});
await addJsInclude(tree);
expect(readJson(tree, 'apps/app1/tsconfig.app.json')).toMatchObject({
include: ['**/*.ts', '**/*.js', '**/*.jsx'],
exclude: ['**/*.spec.tsx', '**/*.spec.js', '**/*.spec.jsx'],
});
});
});