We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5257abd commit 286d636Copy full SHA for 286d636
3 files changed
test/api/lhcFills.test.js
@@ -42,9 +42,6 @@ module.exports = () => {
42
.post('/api/lhcFills')
43
.send({
44
fillNumber: 544455,
45
- stableBeamsStart: new Date('2022-03-22 15:00:00'),
46
- stableBeamsEnd: new Date('2022-03-22 15:00:00'),
47
- stableBeamsDuration: 600,
48
beamType: 'Pb-Pb',
49
fillingSchemeName: 'schemename',
50
});
@@ -67,7 +64,6 @@ module.exports = () => {
67
64
stableBeamsStart: new Date('2022-03-22 15:00:00'),
68
65
stableBeamsEnd: new Date('2022-03-22 15:00:00'),
69
66
stableBeamsDuration: 600,
70
- beamType: 'Pb-Pb',
71
72
})
73
.end((err, res) => {
@@ -103,7 +99,6 @@ module.exports = () => {
103
99
104
100
105
101
106
107
102
108
collidingBunchesCount: 7654321,
109
deliveredLuminosity: 123.123456,
test/lib/usecases/lhcFill/CreateLhcFillUseCase.test.js
@@ -24,9 +24,6 @@ module.exports = () => {
24
createLhcFillDto = await CreateLhcFillDto.validateAsync({
25
body: {
26
fillNumber: 123123123,
27
28
29
30
31
32
},
@@ -52,9 +49,6 @@ module.exports = () => {
52
.execute(createLhcFillDto);
53
54
51
expect(result.fillNumber).to.equal(123123);
55
- expect(result.stableBeamsStart).to.equal(new Date('2022-03-22 15:00:00 utc').getTime());
56
- expect(result.stableBeamsEnd).to.equal(new Date('2022-03-22 15:00:00 utc').getTime());
57
- expect(result.stableBeamsDuration).to.equal(600);
58
expect(result.beamType).to.equal('Pb-Pb');
59
expect(result.fillingSchemeName).to.equal('schemename');
60
test/lib/usecases/lhcFill/UpdateLhcFillUseCase.test.js
@@ -35,7 +35,6 @@ module.exports = () => {
35
stableBeamsStart: new Date('2022-03-21 13:00:00'),
36
37
38
39
40
41
@@ -53,7 +52,6 @@ module.exports = () => {
expect(result.stableBeamsStart).to.equal(new Date('2022-03-21 13:00:00 utc').getTime());
expect(result.stableBeamsEnd).to.equal(new Date('2022-03-22 15:00:00 utc').getTime());
expect(result.stableBeamsDuration).to.equal(600);
- expect(result.beamType).to.equal('Pb-Pb');
}
{
0 commit comments