mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
fcef201695
Version is alpha as it's not complete
38 lines
987 B
JavaScript
38 lines
987 B
JavaScript
const swc = require("../../../");
|
|
const path = require('path');
|
|
|
|
|
|
it('should handle a simple case', async () => {
|
|
const result = await swc.bundle({
|
|
name: 'simple',
|
|
entry: {
|
|
simple: path.join(__dirname, '../../tests/spack/simple/a.js')
|
|
},
|
|
});
|
|
|
|
console.log(result)
|
|
expect(result.simple).toBeTruthy();
|
|
expect(result.simple.code.replace('\n', '')).toBe(`console.log('Foo');`);
|
|
});
|
|
|
|
it('should handle loader', async () => {
|
|
const result = await swc.bundle({
|
|
name: 'virtual',
|
|
entry: {
|
|
simple: path.join(__dirname, '../../tests/spack/simple/a.js')
|
|
},
|
|
module: {
|
|
rules: {
|
|
loaders: [
|
|
{
|
|
test: 'virtual',
|
|
}
|
|
]
|
|
}
|
|
}
|
|
});
|
|
|
|
console.log(result)
|
|
expect(result.simple).toBeTruthy();
|
|
expect(result.simple.code.replace('\n', '')).toBe(`console.log('Foo');`);
|
|
}); |