Skip to content

Commit e224399

Browse files
committed
fix: run test
1 parent 2836289 commit e224399

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
},
136136
"production": {
137137
"optimization": true,
138-
"outputHashing": "all",
138+
"outputHashing": "none",
139139
"sourceMap": false,
140140
"namedChunks": false,
141141
"extractLicenses": true,

test/home.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { expect } from 'chai';
2-
1+
const expect = require('chai');
32
const request = require('./request-service');
43
let body: string;
54
const page = '/home';

test/mock-server.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { expect } from 'chai';
2-
1+
const expect = require('chai');
32
const request = require('./request-service');
43
let body: string;
54
const page = '/mock';

test/transfer-back.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from 'chai';
1+
const expect = require('chai');
22

33
const request = require('./request-service');
44
let body: string;

0 commit comments

Comments
 (0)