refactor!: do not copy JS lib to platform project (#1269)

This commit is contained in:
Raphael von der Grün
2021-07-13 11:01:50 +02:00
committed by GitHub
parent f6d1deeff6
commit 16ff6e1b2f
105 changed files with 89 additions and 75 deletions
+2 -2
View File
@@ -18,13 +18,13 @@
*/
const rewire = require('rewire');
const builders = require('../../bin/templates/cordova/lib/builders/builders');
const builders = require('../../lib/builders/builders');
describe('run', () => {
let run;
beforeEach(() => {
run = rewire('../../bin/templates/cordova/lib/run');
run = rewire('../../lib/run');
run.__set__({
events: jasmine.createSpyObj('eventsSpy', ['emit'])
});